@media (min-width: 992px) {
    .hero-trust-row {
        display: flex;
        align-items: stretch;
    }

        .hero-trust-row > [class*="col-"] {
            display: flex;
            flex-direction: column;
        }
}



/* Right Review Widget Card */
#pr-widget-slot {
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 6px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pr-widget-title {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #222;
}

#pr-rich-rating-badge-widget {
    margin: 0 auto;
    width: 100%;
}

/* Responsiveness */
.australian-overview {
    display: block !important;
}

@media (max-width: 991px) {
    .australian-overview {
        margin-top: 16px;
    }
}

@media (max-width: 767px) {
    .australian-overview {
        display: none !important;
    }

    .hero-trust-panel {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (min-width: 992px) {
    /* Option A: If using Bootstrap column padding */
    .australian-overview {
        padding-right: 20px !important; /* Pushes the card boundary away from the right sidebar */
    }
    /* Option B: Direct margin on the review card itself */
    #pr-widget-slot {
        margin-right: 15px !important;
    }
}



/* Left Trust Card */
.trust-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

/* Middle Divider Line */
@media (min-width: 1200px) {
    .trust-item:first-child {
        border-right: 1px solid #f0f0f0;
        padding-right: 20px;
    }
}

.trust-item strong {
    display: block;
    font-size: 0.95rem;
    color: #222;
}

.trust-item small {
    color: #666;
    display: block;
}

.trust-icon {
    font-size: 1.5rem;
    color: #2b6cb0;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* Remove border when stacked on mobile screens */
@media (max-width: 1199px) {
    .trust-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .trust-card {
        border-left: none;
        border-right: none;
        border-radius: 0px;
    }
}


/* Fix spacing on tablet widths (768px - 991px) */
@media (min-width: 768px) {
    .hero-trust-row {
        margin-right: 15px !important;
    }
}
