/* Google Review Card Styles */
.google-review-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    font-family: 'Roboto', sans-serif;
    /* Fallback to theme font if Roboto inactive */
}

.google-review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.google-review-card__author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-review-card .testimonials-two__thumb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0;
    /* Override theme margin */
}

.google-review-card .testimonials-two__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.google-review-card__meta {
    display: flex;
    flex-direction: column;
}

.google-review-card .testimonials-two__name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #202124;
}

.google-review-card .testimonials-two__name a {
    color: #202124;
    text-decoration: none;
}

.google-review-card__date {
    font-size: 12px;
    color: #72777c;
    margin-top: 2px;
}

.google-review-card__icon i {
    font-size: 24px;
    /* colorful G logo simulation or just standard grey/blue if fontawesome */
    /* If using FA 5 brands, fa-google is just the G */
}

.google-review-card__icon .fa-google {
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.google-review-card__rating {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
}

.google-review-card__rating .fa-star {
    color: #fbbc04;
    /* Google Star Color */
}

.google-review-verified {
    color: #1a73e8;
    /* Blue checkmark */
    margin-left: 8px;
    font-size: 16px;
}

.google-review-card__text {
    font-size: 14px;
    line-height: 1.5;
    color: #4b4b4b;
    margin-bottom: 12px;
    flex-grow: 1;
    /* Pushes footer down */
}

.google-review-card__footer {
    margin-top: auto;
}

.google-review-card__read-more {
    font-size: 14px;
    color: #1a73e8;
    font-weight: 500;
    text-decoration: none;
}

.google-review-card__read-more:hover {
    text-decoration: underline;
}

/* Fix for Popular Destinations Display */
.destinations-card__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 300px;
    height: 450px;
    /* Enforce uniform height */
    /* Capsule/Pill shape */
}

.destinations-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.destinations-card:hover .destinations-card__thumb img {
    transform: scale(1.1);
}