.resources-section-wrap {
position: relative;
left: 50%;
right: 50%;
width: 100vw;
margin-left: -50vw;
margin-right: -50vw;
display: flex;
justify-content: space-around;
box-sizing: border-box;
}
.resources-section {
width: min(1628px, 100vw);
flex-shrink: 0;
padding: 40px 30px;
text-align: center;
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 12px;
box-sizing: border-box;
}
@media (max-width: 1600px) {
.resources-section {
width: calc(100vw - 48px);
}
}
@media (max-width: 1024px) {
.resources-section-wrap {
position: static;
left: auto;
right: auto;
width: 100%;
margin-left: 0;
margin-right: 0;
justify-content: space-around;
padding: 0 24px;
}
.resources-section {
width: 100%;
}
}
@media (max-width: 768px) {
.resources-section-wrap {
padding: 0 16px;
}
.resources-section {
padding: 32px 20px;
}
.resources-section__title {
font-size: 1.65rem;
}
.resources-section__subtitle {
font-size: 0.95rem;
margin-bottom: 28px;
}
}
@media (max-width: 480px) {
.resources-section-wrap {
padding: 0 12px;
}
.resources-section {
padding: 24px 16px;
border-radius: 8px;
}
.resources-section__title {
font-size: 1.45rem;
}
.resources-section__subtitle {
font-size: 0.9rem;
margin-bottom: 24px;
}
.resources-section__footer {
font-size: 0.85rem;
flex-wrap: wrap;
}
}
.resources-section__title {
font-family: Georgia, "Times New Roman", serif;
font-size: 2rem;
font-weight: 700;
color: #1a1a1a;
margin: 0 0 16px;
line-height: 1.3;
}
.resources-section__subtitle {
font-size: 1rem;
color: #666;
max-width: 700px;
margin: 0 auto 40px;
line-height: 1.6;
} .resources-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
text-align: left;
}
@media (max-width: 1024px) {
.resources-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.resources-grid {
grid-template-columns: 1fr;
}
} .resources-card {
background: #fff;
border: 1px solid #e5e5e5;
border-radius: 10px;
overflow: hidden;
display: flex;
flex-direction: column;
}
.resources-card__image-wrap {
overflow: hidden;
}
.resources-card__image {
width: 100%;
height: 180px;
object-fit: cover;
display: block;
}
.resources-card__image--placeholder {
background: #f0f0f0;
height: 180px;
}
.resources-card__body {
padding: 20px;
display: flex;
flex-direction: column;
flex-grow: 1;
}
.resources-card__title {
font-size: 1.1rem;
font-weight: 700;
color: #1a1a1a;
margin: 0 0 10px;
line-height: 1.3;
}
.resources-card__excerpt {
font-size: 0.9rem;
color: #333;
line-height: 1.5;
margin: 0 0 20px;
flex-grow: 1;
}
.resources-card__button {
display: block;
width: 100%;
padding: 12px 20px;
background: #c5a35d;
color: #fff !important;
text-align: center;
text-decoration: none;
font-weight: 700;
font-size: 0.95rem;
border-radius: 6px;
border: none;
transition: background 0.2s ease;
cursor: pointer;
box-sizing: border-box;
}
.resources-card__button:hover,
.resources-card__button:focus {
background: #b08f4d;
color: #fff !important;
text-decoration: none;
} .resources-section__footer {
margin-top: 30px;
font-size: 1rem;
color: #888;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
}
.resources-section__lock {
color: #c5a35d;
font-size: 0.9rem;
}
.resources-empty {
text-align: center;
color: #666;
} html.resources-modal-open,
html.resources-modal-open body {
overflow: hidden;
}
.resources-modal-toggle {
display: none;
}
.resources-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2147483000;
align-items: center;
justify-content: center;
padding: 24px;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.resources-modal.is-open {
display: flex;
}
.resources-modal__backdrop {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.55);
cursor: pointer;
z-index: 0;
border: none;
padding: 0;
}
.resources-modal__dialog {
position: relative;
z-index: 1;
width: 900px;
max-width: 100%;
background: #fff;
border-radius: 14px;
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
padding: 44px 48px 40px;
box-sizing: border-box;
margin: auto;
}
.resources-modal__close {
position: absolute;
top: 18px;
right: 22px;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
line-height: 1;
color: #222;
cursor: pointer;
text-decoration: none;
font-weight: 300;
z-index: 2;
background: transparent;
border: none;
padding: 0;
}
.resources-modal__close:hover {
color: #000;
}
.resources-modal__content {
display: flex;
gap: 40px;
align-items: stretch;
}
.resources-modal__image-col {
flex: 0 0 50%;
max-width: 50%;
display: flex;
align-self: stretch;
}
.resources-modal__image-box {
position: relative;
width: 100%;
height: 100%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.resources-modal__image {
width: 100%;
height: 100%;
object-fit: cover;
display: none;
}
.resources-modal__image-placeholder {
width: 100%;
height: 100%;
min-height: 100%;
padding-bottom: 0;
background: linear-gradient(160deg, #f8f8f8 0%, #ececec 45%, #d8d8d8 100%);
display: none;
}
.resources-modal__form-col {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
justify-content: center;
text-align: left;
}
.resources-modal p {
padding: 0;
margin-bottom: 10px;
font-weight: 700;
}
.resources-modal__title {
font-family: inherit;
font-size: 2rem;
font-weight: 700;
color: #111;
margin: 0 0 14px;
line-height: 1.2;
letter-spacing: -0.02em;
}
.resources-modal__description {
font-size: 1rem;
color: #333;
margin-bottom: 28px;
line-height: 1.55;
}
.resources-modal__form {
display: flex;
flex-direction: column;
gap: 14px;
}
.resources-modal__field {
display: flex;
flex-direction: column;
gap: 6px;
}
.resources-modal__form-error {
padding: 12px 14px;
background: #fef2f2;
border: 1px solid #fecaca;
border-radius: 8px;
color: #b91c1c;
font-size: 0.9rem;
line-height: 1.4;
}
.resources-modal__error {
display: block; font-size: 0.82rem;
color: #b91c1c;
line-height: 0.9;
}
.resources-modal__input {
width: 100% !important;
padding: 15px 16px !important;
font-size: 1rem !important;
font-family: inherit;
border: 1px solid #c8c8c8 !important;
border-radius: 8px !important;
box-sizing: border-box !important;
color: #222 !important;
background: #fff !important;
line-height: 1.4 !important;
-webkit-appearance: none !important;
appearance: none !important;
}
.resources-modal__input::placeholder {
color: #9a9a9a;
}
.resources-modal__input:focus {
outline: none;
border-color: #c5a35d;
box-shadow: 0 0 0 2px rgba(197, 163, 93, 0.15);
}
.resources-modal__input--error {
border-color: #dc2626;
background: #fffafa;
}
.resources-modal__input--error:focus {
border-color: #dc2626;
box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12);
}
.resources-modal__submit {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
margin-top: 10px;
padding: 18px 28px;
background: #c5a35d;
color: #fff !important;
font-size: 1.05rem;
font-family: inherit;
font-weight: 700;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background 0.2s ease;
line-height: 1.2;
text-decoration: none;
text-align: center;
box-sizing: border-box;
}
.resources-modal__submit:hover,
.resources-modal__submit:focus {
background: #b08f4d;
color: #fff !important;
text-decoration: none;
}
.resources-modal__submit-icon {
flex-shrink: 0;
}
.resources-modal__privacy {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 22px;
font-size: 0.8rem;
color: #888;
line-height: 1.45;
text-align: center;
}
.resources-modal__privacy-icon {
flex-shrink: 0;
width: 30px !important;
height: 30px !important;
object-fit: contain;
filter: brightness(0) saturate(100%);
opacity: 1;
}
.resources-modal__thankyou {
text-align: center;
padding: 20px 0;
}
.resources-modal__thankyou-text {
font-size: 1.1rem;
color: #222;
line-height: 1.6;
margin-bottom: 24px;
}
.resources-modal__thankyou-close {
max-width: 200px;
margin: 0 auto;
}
.resources-modal__submit.is-disabled,
.resources-modal__submit[aria-disabled="true"] {
opacity: 0.7;
cursor: not-allowed;
pointer-events: none;
}
@media (max-width: 820px) {
.resources-modal__dialog {
width: 100%;
padding: 40px 32px 32px;
}
.resources-modal__content {
gap: 32px;
}
}
@media (max-width: 768px) {
.resources-modal {
padding: 16px;
align-items: flex-start;
}
.resources-modal__dialog {
width: 100%;
padding: 36px 24px 28px;
margin-top: 20px;
margin-bottom: 20px;
}
.resources-modal__content {
flex-direction: column;
gap: 28px;
}
.resources-modal__image-col {
flex: none;
max-width: 100%;
width: 100%;
align-self: auto;
}
.resources-modal__image-box {
height: auto;
}
.resources-modal__image-placeholder {
height: 0;
min-height: 0;
padding-bottom: 65%;
}
.resources-modal__title {
font-size: 1.65rem;
}
.resources-modal__description {
margin-bottom: 22px;
font-size: 0.95rem;
}
.resources-modal__input {
padding: 14px 15px;
font-size: 0.95rem;
}
.resources-modal__submit {
padding: 16px 24px;
font-size: 1rem;
}
.resources-modal__privacy {
font-size: 0.75rem;
}
}
@media (max-width: 480px) {
.resources-modal {
padding: 12px;
}
.resources-modal__dialog {
padding: 32px 18px 24px;
border-radius: 12px;
}
.resources-modal__close {
top: 12px;
right: 14px;
font-size: 26px;
}
.resources-modal__title {
font-size: 1.45rem;
}
.resources-modal__form {
gap: 12px;
}
.resources-modal__input {
padding: 13px 14px;
border-radius: 6px;
}
.resources-modal__submit {
padding: 15px 20px;
border-radius: 6px;
}
} .resources-settings-wrap code {
display: inline-block;
padding: 8px 12px;
background: #f0f0f1;
border-radius: 4px;
font-size: 14px;
margin: 8px 0;
}
.resources-pdf-field .description {
margin-top: 8px;
font-style: italic;
}