/* PDF Download CTA Block Styles */
.pdf-download-cta {
    padding: 80px 0;
}

/* Background and Theme Colors */
.pdf-download-cta.background-big-stone {
    background-color: #0F4059;
}

/* Content Container */
.pdf-download-cta .cta-block__content {
    text-align: left;
    position: relative;
    padding-left: 2rem; /* 8.333% - matches homepage grid column offset */
}

/* Diamond decoration above heading */
.pdf-download-cta .cta-block__content::before {
    content: '';
    display: block;
    width: 150px;
    height: 30px;
    margin-bottom: 30px;
    background: url("data:image/svg+xml,%3Csvg width='150' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M10 15 l7-7 l7 7 l-7 7z' fill='%230075F2'/%3E%3Cpath d='M24 15 h102' stroke='%230075F2' stroke-width='2'/%3E%3Cpath d='M126 15 l7-7 l7 7 l-7 7z' fill='%230075F2'/%3E%3C/g%3E%3C/svg%3E") no-repeat left center;
}

/* Typography */
.pdf-download-cta .cta-block__content h2 {
    color: #fff;
    font-family: "proxima-nova", "Open Sans", sans-serif;
    font-size: 3.25rem;
    font-weight: 700;
    margin: 0 0 1.875rem 0;
    text-align: left;
}

/* Button Styles */
.pdf-download-cta .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px 0 54px;
    height: 65px;
    min-width: 220px;
    width: auto;
    background-color: #fff;
    color: #0B272D;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 32.5px;
    position: relative;
    margin-left: 0;
    align-self: flex-start;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button Diamond Indicator */
.pdf-download-cta .button::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    background-color: #0075F2;
    position: absolute;
    left: 26px;
    transition: background-color 0.3s ease;
}

/* Button Hover State */
.pdf-download-cta .button:hover {
    background-color: #0075F2;
    color: #fff;
}

.pdf-download-cta .button:hover::before {
    background-color: #fff;
}

/* Mobile Responsive */
@media screen and (max-width: 991px) {
    .pdf-download-cta .cta-block__content h2 {
        font-size: 2.1875rem;
    }
}

@media screen and (max-width: 767px) {
    .pdf-download-cta {
        padding: 1.875rem 0;
    }
    
    .pdf-download-cta .cta-block__content {
        padding-left: 0;
    }
    
    .pdf-download-cta .button {
        width: 100%;
    }
}