/* ============================================================
   Geo Popular Topics Widget
   ============================================================ */

/* Topic Card */
.popular-topics-card {
    background-color: #F6F2EE;
    border-radius: 28px;
    padding: 44px 36px;
    box-shadow: 0 15px 40px rgba(77, 31, 31, 0.04);
    border: 1px solid rgba(77, 31, 31, 0.02);
    width: 100%;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Eyebrow */
.popular-topics-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #4D1F1F;
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* Topic List Items */
.topic-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    box-sizing: border-box;
}

.topic-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.topic-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Circular thumbnail image */
.topic-thumbnail {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(77, 31, 31, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(77, 31, 31, 0.08);
}

.topic-title {
    font-size: 16px;
    font-weight: 700;
    color: #3B2A24;
    margin: 0;
    line-height: 1.2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.topic-count {
    font-size: 14.5px;
    font-weight: 500;
    color: #8C7E7A;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Item Hover States */
.topic-item:hover .topic-title {
    color: #4D1F1F;
}

.topic-item:hover .topic-thumbnail {
    transform: scale(1.08);
    border-color: #D7A16E;
    box-shadow: 0 4px 10px rgba(215, 161, 110, 0.25);
}

/* View All Link */
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #4D1F1F;
    text-decoration: none;
    margin-top: 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.view-all-link svg {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    stroke: currentColor;
}

.view-all-link:hover {
    color: #D7A16E;
}

.view-all-link:hover svg {
    transform: translateX(5px);
    stroke: #D7A16E;
}
