/* Region Greeting Widget Styles */
.fg-region-greeting-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    z-index: 1;
}

/* Animated Gradient Border */
.fg-region-greeting-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    /* Border width */
    background: linear-gradient(45deg, #ff0000, #00247d, #ff0000);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 200% 200%;
    animation: fg-border-flow 3s linear infinite;
    pointer-events: none;
}

@keyframes fg-border-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.fg-rg-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.fg-rg-flag {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
}

.fg-rg-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fg-rg-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fg-rg-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.fg-rg-title .highlight {
    color: #E30613;
}

.fg-rg-desc {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
    max-width: 500px;
}

.fg-rg-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 12px;
    color: #E30613;
    font-size: 24px;
    transition: all 0.3s ease;
}

.fg-region-greeting-card:hover .fg-rg-icon {
    transform: scale(1.1) rotate(5deg);
    background: #E30613;
    color: #fff;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .fg-region-greeting-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .fg-rg-content {
        flex-direction: column;
        gap: 15px;
    }

    .fg-rg-text {
        align-items: center;
    }

    .fg-rg-icon {
        display: none;
        /* Mobilde ikonu gizle veya küçült */
    }
}