/* Left-aligns photo captions */

.wp-caption-text {text-align: left}

/* Hides text content from grid page */

.page-template-grid-page .entry-summary {
	display: none !important;
}

/* Removes hyphens around tagline */

.site-description:before,
.site-description:after {
	display: none !important
}

/* Changes tagline font from body font formatting to header font formatting and makes font-size larger */

.site-description {
	font-family: "Playfair Display",serif !important;
	font-size: 25px
  
}

/* Makes a links in titles on grid page red */

.child-pages a:link
{color: #ad0010}

/* Makes a visited links in titles on grid page a lighter blue than the background color (#10133c) instead of blackish gray */

.child-pages a:visited {color: #242B88}

/* Makes a hover/focus/active links in titles on grid page gray like all the other hover/focus/active links in the body */

.child-pages a:hover, a:focus, a:active {color: #a8a6a1; text-decoration: none;}

/* Makes a hover/focus/active links in footer gray like all the other hover/focus/active links in the body */

.footer-widget-area a:active, a:focus, a:hover {color: #a8a6a1 !important; text-decoration: none !important}

/* Makes h1 headers significantly larger than h2 headers, overrides entry-title styling that made them small */

h1 {
	font-size: 47px !important
}

/* Makes site title significantly larger than h1 headers */

.site-title {
font-size: 60px	!important
}
.cta-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.cta-box {
    flex: 1 1 300px;
    max-width: 360px;
    min-height: 260px;

    padding: 40px 30px;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: #ffffff !important;
    text-decoration: none !important;

    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blue {
    background-color: #11143C;
}

.red {
    background-color: #AD1F23;
}

.cta-box h3 {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.2;
    color: #ffffff !important;
}

.cta-box p {
    margin: 0;
    max-width: 280px;
    line-height: 1.7;
    color: #ffffff !important;
}

.cta-box:link,
.cta-box:visited,
.cta-box:hover,
.cta-box:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.cta-box h3::after {
    content: " →";
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-box:hover h3::after {
    opacity: 1;
}

@media (max-width: 900px) {
    .cta-box {
        max-width: 100%;
    }
.cta-box {
    cursor: pointer;
}
}
.home .entry-title {
    display: none !important;
}