/* ==========================
   GOLDEN BAKERY HEADING
========================== */

.gb-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

    padding:35px 0 30px;

    position:relative;
}

.gb-heading::after{

    content:"";

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(201,148,50,.45),
        transparent
    );

}

/* LEFT */

.gb-heading-left{

    flex:0 0 auto;

}

.gb-heading-left h2{

    margin:0;

    font-family:"Cormorant Garamond",serif;

    font-size:72px;

    font-weight:500;

    line-height:1;

    letter-spacing:1px;

    color:#7a1823;

}

.gb-heading-left span{

    display:block;

    width:180px;

    height:3px;

    margin-top:12px;

    border-radius:50px;

    background:
    linear-gradient(
        90deg,
        #d3a13b,
        #f4d38c,
        #d3a13b
    );

}

/* RIGHT */

.gb-heading-right{

    max-width:560px;

}

.gb-heading-right p{

    margin:0;

    font-size:22px;

    line-height:1.8;

    color:#7b6041;

    font-weight:400;

}

/* Highlight */

.gb-heading-right strong{

    color:#c99432;

}

/* Mobile */

@media(max-width:850px){

.gb-heading{

    flex-direction:column;

    gap:20px;

    text-align:center;

}

.gb-heading-left span{

    margin:14px auto 0;

}

.gb-heading-left h2{

    font-size:52px;

}

.gb-heading-right{

    max-width:100%;

}

.gb-heading-right p{

    font-size:18px;

}

}