/*==================================================
 HOROSCOPE SECTION
==================================================*/

.horoscope-section {
    padding: 0;
    background: none;
}

.horoscope-section .container{
    background:#fffdf8;
    border:2px solid #ead8b1;
    border-radius:18px;
    padding:25px 20px;
}

.horoscope-header{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:35px;
}

.horoscope-header h2{
    margin:0 20px;
    font-size:34px;
    font-weight:700;
    color:#6b2f00;
}

.horoscope-header .line{
    flex:1;
    height:2px;
    background:#d8b46b;
}

.choose-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #8b0000;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.choose-btn:hover{
    background:#d8a63b;
    color:#fff;
}

.horoscope-row{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:18px;
}

.zodiac-item{
    text-align:center;
    text-decoration:none;
    color:#4b2b00;
    transition:.3s;
}

.zodiac-icon {
    width: 78px;
    height: 78px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid #8b0000;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    transition: .3s;
}

.zodiac-item span{
    display:block;
    margin-top:10px;
    font-size:17px;
    font-weight:600;
}

.zodiac-item:hover{
    transform:translateY(-6px);
}

.zodiac-item:hover .zodiac-icon {
    background: #fff6e2;
    color: #fff;
    border-color: #d8a63b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

/*=========================
 Responsive
=========================*/

@media(max-width:1199px){

    .horoscope-row{
        grid-template-columns:repeat(6,1fr);
        row-gap:30px;
    }

}

@media(max-width:767px){

    .horoscope-header{
        display:block;
        text-align:center;
    }

    .horoscope-header .line{
        display:none;
    }

    .choose-btn{
        position:static;
        transform:none;
        display:inline-block;
        margin-top:15px;
    }

    .horoscope-header h2{
        font-size:28px;
    }

    .horoscope-row{
        grid-template-columns:repeat(4,1fr);
        gap:20px;
    }

    .zodiac-icon{
        width:65px;
        height:65px;
        font-size:32px;
    }

    .zodiac-item span{
        font-size:15px;
    }

}