<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;600&display=swap" rel="stylesheet">
<style>
  body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    margin: 0;
    padding: 0;
  }

  .address-list-wrapper {
    max-width: 900px;
    margin: 30px auto;
  }

  .address-card {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
  }

  .address-card.highlight {
    border: 2px solid #29a7e1;
  }

  .address-info {
    display: flex;
    flex-direction: column;
    text-align: right;
  }

  .address-title {
    font-size: 16px;
    font-weight: 600;
    color: #29a7e1;
    margin-bottom: 4px;
  }

  .address-desc {
    font-size: 14px;
    color: #a0a0a0;
  }

  .address-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
    border: 2px solid #fff;
  }

  .address-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* this keeps full content like the "C" */
    border-radius: 50%;
  }

  @media (max-width: 576px) {
    .address-card {
      flex-direction: column;
      align-items: flex-start;
    }

    .address-icon {
      margin-right: 0;
      margin-bottom: 12px;
    }

    .address-info {
      align-items: flex-start;
      text-align: right;
    }
  }
</style>

<div class="address-list-wrapper">
    <div class="address-card">
      <div class="address-info">
        <div class="address-title">
          <%= address.title %>
        </div>
        <div class="address-desc">
          <%= address.description %>
        </div>
      </div>
    </div>
</div>