﻿.carousel-control-prev-icon,
.carousel-control-next-icon {
    /*background-color: var(--accent-color);*/ /* یا رنگی که در btn-get-started استفاده شده */
    border-radius: 50%;
    padding: 10px;
    filter: brightness(1.2);
}


.fixed-article-image {
    height: 200px; /* یا هر ارتفاعی که مناسب طراحی‌ت باشه */
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}



.card-img-top.full-image {
    height: 200px;
    object-fit: contain;
    background-color: #f8f9fa; /* برای عکس‌هایی که فضای خالی دارن */
    border-radius: 30px !important;
}



.full-image {
    height: 200px;
    object-fit: cover;
    background-color: #f8f9fa;
    border-radius: 20px;
    margin-top: 1px;
}


.image-container {
    position: relative;
    display: inline-block;
}

.solid-circle {
    width: 100%;
    height: auto;
    border: 6px solid #ff1493;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; /* کادر ممتد در ابتدا بالای خط‌چین */
}

.hover-effect {
    transition: all 0.3s ease-in-out;
    border: 5px dashed pink;
    border-radius: 50%;
    position: relative; /* حفظ جایگاه خط‌چین */
    z-index: 1;
}

.hover-large:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3);
    border-color: deeppink
}

.hover-small:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    border-color: #ff69b4;
}

.card-wrapper {
    width: 100%;
    max-width: 310px;
    min-width: 250px;
    flex-grow: 1;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .card-wrapper {
        max-width: 80%; /* توی موبایل باریک‌تر بشه ولی وسط بمونه */
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .card-wrapper {
        max-width: 310px;
        margin: 0 auto;
    }
}


