/**
 * Checkout Modal Styles
 */

.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.checkout-modal {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.checkout-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.checkout-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.checkout-modal-close:hover {
    color: #000;
}

.checkout-modal-body {
    padding: 20px;
}

/* Progress indicator */
.checkout-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.checkout-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.checkout-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 0;
    left: 50%;
    height: 2px;
    background: #e0e0e0;
    z-index: -1;
}

.checkout-step.active .step-number {
    background: #0073aa;
    color: white;
}

.checkout-step.active::after {
    background: #0073aa;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
}

.step-label {
    font-size: 12px;
    color: #666;
}

.checkout-step.active .step-label {
    color: #0073aa;
    font-weight: 600;
}

/* Step content */
.checkout-step-content {
    min-height: 300px;
}

/* Account details step */
.step-account-details h3,
.step-payment-details h3,
.step-payment-status h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.user-info {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.user-info p {
    margin: 5px 0;
}

.invoice-summary {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.invoice-summary h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-total {
    margin-top: 10px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
}

/* Account Required Section */
.account-required-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.account-icon {
    margin-bottom: 15px;
}

.account-icon .dashicons {
    font-size: 48px;
    color: #0073aa;
    width: 48px;
    height: 48px;
}

.account-required-header h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.account-description {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.account-benefits {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #28a745;
}

.account-benefits h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #555;
    font-size: 14px;
}

.benefits-list .dashicons {
    color: #28a745;
    margin-right: 10px;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.account-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.guest-checkout-note {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.guest-checkout-note .dashicons {
    margin-right: 8px;
    color: #0073aa;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #0073aa;
    color: #0073aa;
}

.btn-outline:hover:not(:disabled) {
    background: #0073aa;
    color: white;
}

/* Auth forms */
.auth-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 25px;
    background: white;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.auth-tab {
    flex: 1;
    padding: 15px 20px;
    background: #f8f9fa;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-tab:hover:not(:disabled) {
    background: #e9ecef;
    color: #333;
}

.auth-tab.active {
    background: white;
    color: #0073aa;
    border-bottom-color: #0073aa;
}

.auth-tab:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-tab .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.auth-error {
    background: #fee;
    color: #c33;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-error .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.auth-form {
    max-width: 450px;
    margin: 0 auto;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.auth-form label .dashicons {
    color: #0073aa;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.auth-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.auth-form input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.auth-form input:disabled {
    background: #f8f9fa;
    color: #666;
    cursor: not-allowed;
}

.auth-form input::-moz-placeholder {
    color: #999;
    font-style: italic;
}

.auth-form input::placeholder {
    color: #999;
    font-style: italic;
}

.auth-form .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-form .btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.auth-form .btn:disabled .dashicons {
    animation: spin 1s linear infinite;
}

/* Payment details step */
.gateway-list {
    margin-bottom: 20px;
}

.gateway-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.gateway-option:hover {
    border-color: #0073aa;
    background: #f9f9f9;
}

.gateway-option.selected {
    border-color: #0073aa;
    background: #f0f7fc;
}

.gateway-info h4 {
    margin: 0 0 5px 0;
}

.gateway-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.checkout-fields {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Form elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group .required {
    color: #c33;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.field-help {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

/* Payment status step */
.step-payment-status {
    text-align: center;
    padding: 20px 0;
}

.status-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 48px;
}

.status-icon.success {
    background: #4caf50;
    color: white;
}

.status-icon.error {
    background: #f44336;
    color: white;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.status-note {
    color: #666;
    font-size: 14px;
}

.success-actions {
    margin: 30px 0;
}

.invoice-details {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.retry-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #0073aa;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #005a87;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: #ddd;
    color: #333;
}

.btn-secondary:hover:not(:disabled) {
    background: #ccc;
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.step-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: flex-end;
}

/* Loading and error states */
.step-loading,
.step-error {
    text-align: center;
    padding: 40px 20px;
}

.payment-error {
    background: #fee;
    color: #c33;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.payment-info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.payment-info-box h4 {
    margin: 0 0 8px 0;
    color: #1976d2;
    font-size: 16px;
}

.payment-info-box p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

/* Pesapal iframe container */
.pesapal-iframe-container {
    text-align: center;
    padding: 20px 0;
}

.pesapal-iframe-container h3 {
    margin-bottom: 10px;
    color: #333;
}

.pesapal-iframe-container p {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.pesapal-iframe-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-modal {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .checkout-progress {
        margin-bottom: 20px;
    }

    .step-label {
        font-size: 10px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .pesapal-iframe-container iframe {
        min-height: 500px;
    }
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}

::-webkit-datetime-edit {
  display: inline-flex;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[multiple],[size]:where(select:not([size="1"])) {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
  border-radius: 0px;
}

[type='radio'] {
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {

  [type='checkbox']:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {

  [type='radio']:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (forced-colors: active)  {

  [type='checkbox']:indeterminate {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
#wpbody-content .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#wpbody-content .pointer-events-none {
  pointer-events: none;
}
#wpbody-content .visible {
  visibility: visible;
}
#wpbody-content .relative {
  position: relative;
}
#wpbody-content .isolate {
  isolation: isolate;
}
#wpbody-content .mx-auto {
  margin-left: auto;
  margin-right: auto;
}
#wpbody-content .-mt-16 {
  margin-top: -4rem;
}
#wpbody-content .mb-6 {
  margin-bottom: 1.5rem;
}
#wpbody-content .ml-3 {
  margin-left: 0.75rem;
}
#wpbody-content .mr-1\.5 {
  margin-right: 0.375rem;
}
#wpbody-content .mr-2\.5 {
  margin-right: 0.625rem;
}
#wpbody-content .mt-1 {
  margin-top: 0.25rem;
}
#wpbody-content .mt-10 {
  margin-top: 2.5rem;
}
#wpbody-content .mt-2 {
  margin-top: 0.5rem;
}
#wpbody-content .mt-20 {
  margin-top: 5rem;
}
#wpbody-content .mt-3 {
  margin-top: 0.75rem;
}
#wpbody-content .mt-4 {
  margin-top: 1rem;
}
#wpbody-content .mt-6 {
  margin-top: 1.5rem;
}
#wpbody-content .block {
  display: block;
}
#wpbody-content .inline-block {
  display: inline-block;
}
#wpbody-content .flex {
  display: flex;
}
#wpbody-content .inline-flex {
  display: inline-flex;
}
#wpbody-content .flow-root {
  display: flow-root;
}
#wpbody-content .grid {
  display: grid;
}
#wpbody-content .hidden {
  display: none;
}
#wpbody-content .h-16 {
  height: 4rem;
}
#wpbody-content .h-4 {
  height: 1rem;
}
#wpbody-content .h-5 {
  height: 1.25rem;
}
#wpbody-content .h-6 {
  height: 1.5rem;
}
#wpbody-content .h-9 {
  height: 2.25rem;
}
#wpbody-content .min-h-full {
  min-height: 100%;
}
#wpbody-content .w-11 {
  width: 2.75rem;
}
#wpbody-content .w-4 {
  width: 1rem;
}
#wpbody-content .w-5 {
  width: 1.25rem;
}
#wpbody-content .w-auto {
  width: auto;
}
#wpbody-content .w-full {
  width: 100%;
}
#wpbody-content .max-w-2xl {
  max-width: 42rem;
}
#wpbody-content .max-w-4xl {
  max-width: 56rem;
}
#wpbody-content .max-w-6xl {
  max-width: 72rem;
}
#wpbody-content .max-w-7xl {
  max-width: 80rem;
}
#wpbody-content .max-w-\[450px\] {
  max-width: 450px;
}
#wpbody-content .max-w-sm {
  max-width: 24rem;
}
#wpbody-content .max-w-xl {
  max-width: 36rem;
}
#wpbody-content .flex-none {
  flex: none;
}
#wpbody-content .flex-shrink-0 {
  flex-shrink: 0;
}
#wpbody-content .translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
#wpbody-content .translate-x-5 {
  --tw-translate-x: 1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
#wpbody-content .transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
#wpbody-content .cursor-pointer {
  cursor: pointer;
}
#wpbody-content .list-inside {
  list-style-position: inside;
}
#wpbody-content .list-disc {
  list-style-type: disc;
}
#wpbody-content .grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
#wpbody-content .flex-col {
  flex-direction: column;
}
#wpbody-content .items-start {
  align-items: flex-start;
}
#wpbody-content .items-center {
  align-items: center;
}
#wpbody-content .items-baseline {
  align-items: baseline;
}
#wpbody-content .justify-center {
  justify-content: center;
}
#wpbody-content .justify-between {
  justify-content: space-between;
}
#wpbody-content .gap-2 {
  gap: 0.5rem;
}
#wpbody-content .gap-4 {
  gap: 1rem;
}
#wpbody-content .gap-6 {
  gap: 1.5rem;
}
#wpbody-content .gap-x-1 {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
#wpbody-content .gap-x-3 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
#wpbody-content .gap-y-16 {
  row-gap: 4rem;
}
#wpbody-content :is(.space-y-1 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
#wpbody-content :is(.space-y-10 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
#wpbody-content :is(.space-y-3 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
#wpbody-content :is(.space-y-4 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
#wpbody-content :is(.space-y-5 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
#wpbody-content :is(.space-y-6 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
#wpbody-content :is(.space-y-8 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
#wpbody-content :is(.divide-y > :not([hidden]) ~ :not([hidden])) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
#wpbody-content :is(.divide-gray-100 > :not([hidden]) ~ :not([hidden])) {
  --tw-divide-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-divide-opacity, 1));
}
#wpbody-content .self-center {
  align-self: center;
}
#wpbody-content .rounded {
  border-radius: 0.25rem;
}
#wpbody-content .rounded-full {
  border-radius: 9999px;
}
#wpbody-content .rounded-lg {
  border-radius: 0.5rem;
}
#wpbody-content .rounded-md {
  border-radius: 0.375rem;
}
#wpbody-content .border {
  border-width: 1px;
}
#wpbody-content .border-0 {
  border-width: 0px;
}
#wpbody-content .border-2 {
  border-width: 2px;
}
#wpbody-content .border-b {
  border-bottom-width: 1px;
}
#wpbody-content .border-b-2 {
  border-bottom-width: 2px;
}
#wpbody-content .border-l-4 {
  border-left-width: 4px;
}
#wpbody-content .border-t {
  border-top-width: 1px;
}
#wpbody-content .border-amber-800 {
  --tw-border-opacity: 1;
  border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
}
#wpbody-content .border-blue-500 {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
#wpbody-content .border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
#wpbody-content .border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
#wpbody-content .border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
#wpbody-content .border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
#wpbody-content .border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
#wpbody-content .border-transparent {
  border-color: transparent;
}
#wpbody-content .border-yellow-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
#wpbody-content .border-b-gray-200 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
#wpbody-content .border-t-gray-200 {
  --tw-border-opacity: 1;
  border-top-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
#wpbody-content .bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
#wpbody-content .bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
#wpbody-content .bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
#wpbody-content .bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
#wpbody-content .bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
#wpbody-content .bg-yellow-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
#wpbody-content .bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
#wpbody-content .p-4 {
  padding: 1rem;
}
#wpbody-content .p-5 {
  padding: 1.25rem;
}
#wpbody-content .p-6 {
  padding: 1.5rem;
}
#wpbody-content .px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
#wpbody-content .px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
#wpbody-content .px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
#wpbody-content .px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
#wpbody-content .px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
#wpbody-content .px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
#wpbody-content .px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
#wpbody-content .px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
#wpbody-content .py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
#wpbody-content .py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
#wpbody-content .py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
#wpbody-content .py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#wpbody-content .py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
#wpbody-content .py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#wpbody-content .py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
#wpbody-content .py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
#wpbody-content .pb-4 {
  padding-bottom: 1rem;
}
#wpbody-content .pl-4 {
  padding-left: 1rem;
}
#wpbody-content .pt-1 {
  padding-top: 0.25rem;
}
#wpbody-content .pt-16 {
  padding-top: 4rem;
}
#wpbody-content .pt-6 {
  padding-top: 1.5rem;
}
#wpbody-content .text-center {
  text-align: center;
}
#wpbody-content .text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
#wpbody-content .text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
#wpbody-content .text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
#wpbody-content .text-5xl {
  font-size: 3rem;
  line-height: 1;
}
#wpbody-content .text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
#wpbody-content .text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
#wpbody-content .text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
#wpbody-content .text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
#wpbody-content .text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
#wpbody-content .font-bold {
  font-weight: 700;
}
#wpbody-content .font-medium {
  font-weight: 500;
}
#wpbody-content .font-semibold {
  font-weight: 600;
}
#wpbody-content .uppercase {
  text-transform: uppercase;
}
#wpbody-content .leading-6 {
  line-height: 1.5rem;
}
#wpbody-content .leading-7 {
  line-height: 1.75rem;
}
#wpbody-content .leading-8 {
  line-height: 2rem;
}
#wpbody-content .leading-tight {
  line-height: 1.25;
}
#wpbody-content .tracking-tight {
  letter-spacing: -0.025em;
}
#wpbody-content .tracking-wide {
  letter-spacing: 0.025em;
}
#wpbody-content .text-amber-800 {
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
#wpbody-content .text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
#wpbody-content .text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
#wpbody-content .text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
#wpbody-content .text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
#wpbody-content .text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
#wpbody-content .text-indigo-600 {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}
#wpbody-content .text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
#wpbody-content .text-yellow-700 {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
#wpbody-content .text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
#wpbody-content .shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
#wpbody-content .shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
#wpbody-content .shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
#wpbody-content .outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
#wpbody-content .ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
#wpbody-content .ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
#wpbody-content .ring-inset {
  --tw-ring-inset: inset;
}
#wpbody-content .ring-gray-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
#wpbody-content .filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
#wpbody-content .transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
#wpbody-content .transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
#wpbody-content .duration-200 {
  transition-duration: 200ms;
}
#wpbody-content .ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   PulseCast Navigation Styles
   ============================================ */

.pulsecast-nav {
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
	            border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Intelligent contrast: dark nav for bright logos */
.pulsecast-nav.nav-contrast-dark {
	background: #1f2937;
	border-bottom-color: #374151;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Intelligent contrast: light nav for dark logos (default, but ensures consistency) */
.pulsecast-nav.nav-contrast-light {
	background: #ffffff;
	border-bottom-color: #e5e7eb;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	font-weight: 700;
	color: #1f2937;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            text-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-shadow: none;
}

/* Dark nav: light text with subtle shadow for readability */
.nav-contrast-dark .nav-brand {
	color: #f9fafb;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	font-weight: 600;
}

/* Light nav: dark text (default) */
.nav-contrast-light .nav-brand {
	color: #1f2937;
	text-shadow: none;
	font-weight: 700;
}

.brand-icon {
	font-size: 28px;
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-logo {
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1;
}

.nav-contrast-dark .custom-logo {
	filter: brightness(1.1) contrast(1.05);
}

.brand-name {
	font-family: 'Georgia', serif;
	letter-spacing: -0.5px;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            font-weight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-contrast-dark .brand-name {
	font-weight: 600;
}

.brand-badge {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #4b5563;
	font-weight: 500;
	margin-left: 8px;
	padding: 4px 8px;
	background: #f3f4f6;
	border-radius: 4px;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            text-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-shadow: none;
}

/* Dark nav: light brand badge */
.nav-contrast-dark .brand-badge {
	color: #e5e7eb;
	background: rgba(255, 255, 255, 0.15);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	font-weight: 600;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 40px;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	color: #4b5563;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	border-radius: 6px;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            font-weight 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            text-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-shadow: none;
	letter-spacing: 0.01em;
}

.nav-link:hover {
	color: #1f2937;
	background: #f9fafb;
	font-weight: 600;
}

.nav-link.active {
	color: #1f2937;
	background: #f3f4f6;
	font-weight: 600;
}

/* Dark nav: light links */
.nav-contrast-dark .nav-link {
	color: #d1d5db;
	font-weight: 500;
}

.nav-contrast-dark .nav-link:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	font-weight: 600;
}

.nav-contrast-dark .nav-link.active {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.18);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	font-weight: 600;
}

.nav-icon {
	font-size: 16px;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nav-action {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	color: #4b5563;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 6px;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            font-weight 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            text-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-shadow: none;
	letter-spacing: 0.01em;
}

.nav-action:hover {
	color: #1f2937;
	background: #f9fafb;
	font-weight: 600;
}

/* Dark nav: light actions */
.nav-contrast-dark .nav-action {
	color: #d1d5db;
	font-weight: 500;
}

.nav-contrast-dark .nav-action:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	font-weight: 600;
}

.action-icon {
	font-size: 16px;
}

.user-menu {
	position: relative;
}

.user-avatar {
	border: none;
	background: none;
	cursor: pointer;
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.2s ease;
}

.user-avatar:hover {
	transform: scale(1.05);
}

.user-avatar img {
	border-radius: 50%;
}

.user-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	padding: 8px 0;
	min-width: 180px;
	z-index: 1001;
}

.user-dropdown a {
	display: block;
	padding: 8px 16px;
	color: #374151;
	text-decoration: none;
	font-size: 14px;
	transition: background 0.2s ease;
}

.user-dropdown a:hover {
	background: #f9fafb;
}

/* Dark nav: dark user dropdown */
.nav-contrast-dark .user-dropdown {
	background: #374151;
	border-color: #4b5563;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.nav-contrast-dark .user-dropdown a {
	color: #d1d5db;
	font-weight: 500;
	transition: color 0.3s ease, background-color 0.3s ease, font-weight 0.3s ease;
}

.nav-contrast-dark .user-dropdown a:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-weight: 600;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.back-to-site {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	color: #4b5563;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 6px;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            font-weight 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            text-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-shadow: none;
	letter-spacing: 0.01em;
}

.back-to-site:hover {
	color: #1f2937;
	background: #f9fafb;
	font-weight: 600;
}

/* Dark nav: light back-to-site */
.nav-contrast-dark .back-to-site {
	color: #d1d5db;
	font-weight: 500;
}

.nav-contrast-dark .back-to-site:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	font-weight: 600;
}

.back-icon {
	font-size: 16px;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu-toggle span {
	width: 20px;
	height: 2px;
	background: #6b7280;
	transition: all 0.2s ease;
}

/* Dark nav: light mobile menu toggle */
.nav-contrast-dark .mobile-menu-toggle span {
	background: #d1d5db;
}

/* ============================================
   Magazine Archive Styles
   ============================================ */

.pulsecast-magazine-archive {
	max-width: 1400px;
	margin: 0 auto;
	padding: 100px 20px 60px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.archive-container {
	width: 100%;
}

.archive-header {
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 30px;
	border-bottom: 2px solid #e8e8e8;
}

.archive-title {
	font-size: 48px;
	font-weight: 300;
	letter-spacing: -1px;
	margin: 0 0 15px 0;
	color: #1a1a1a;
	text-transform: uppercase;
	font-family: 'Georgia', serif;
}

.archive-description {
	font-size: 18px;
	color: #666;
	font-weight: 300;
	letter-spacing: 0.5px;
	margin: 0;
}

.archive-controls {
	margin-bottom: 40px;
}

.search-box {
	position: relative;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.magazine-search-input {
	width: 100%;
	padding: 18px 55px 18px 25px;
	font-size: 16px;
	border: 2px solid #e0e0e0;
	border-radius: 50px;
	outline: none;
	transition: all 0.3s ease;
	background: #fafafa;
}

.magazine-search-input:focus {
	border-color: #333;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.search-icon {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	pointer-events: none;
}

.filters-row {
	display: flex;
	gap: 20px;
	align-items: flex-end;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.filter-group {
	flex: 1;
	min-width: 180px;
}

.filter-group label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #666;
	margin-bottom: 8px;
	font-weight: 600;
}

.filter-select {
	width: 100%;
	padding: 12px 15px;
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: white;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
}

.filter-select:hover,
.filter-select:focus {
	border-color: #333;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.view-toggle {
	display: flex;
	gap: 5px;
	background: #f5f5f5;
	padding: 4px;
	border-radius: 8px;
}

.view-btn {
	padding: 10px 16px;
	background: transparent;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #666;
	font-size: 16px;
}

.view-btn:hover {
	background: #e0e0e0;
	color: #333;
}

.view-btn.active {
	background: white;
	color: #333;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.active-filters {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	padding: 15px 20px;
	background: #f9f9f9;
	border-radius: 8px;
	margin-top: 20px;
}

.filters-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #666;
	font-weight: 600;
}

.filter-tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	flex: 1;
}

.filter-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 13px;
	color: #333;
}

.remove-filter {
	background: none;
	border: none;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: #999;
	padding: 0;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

.remove-filter:hover {
	color: #e74c3c;
}

.clear-filters {
	padding: 8px 16px;
	background: #333;
	color: white;
	border: none;
	border-radius: 20px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.clear-filters:hover {
	background: #555;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.results-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding: 0 5px;
}

.results-count {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.loading-indicator {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #666;
	font-size: 14px;
}

.spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid #ddd;
	border-top-color: #333;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* ============================================
   Magazine Grid & Cards
   ============================================ */

.magazine-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 40px 30px;
	margin-bottom: 60px;
	transition: opacity 0.3s ease;
}

.magazine-grid[data-view="list"] {
	grid-template-columns: 1fr;
	gap: 30px;
}

.magazine-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	position: relative;
}

.magazine-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.magazine-cover {
	position: relative;
	overflow: hidden;
	background: #f5f5f5;
	aspect-ratio: 3/4;
}

.magazine-cover-image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	transition: transform 0.4s ease;
}

.magazine-card:hover .magazine-cover-image {
	transform: scale(1.05);
}

.magazine-cover-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.placeholder-icon {
	font-size: 64px;
	margin-bottom: 10px;
	opacity: 0.7;
}

.placeholder-text {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	opacity: 0.7;
}

.magazine-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 16px;
	color: white;
}

.magazine-card:hover .magazine-overlay {
	opacity: 1;
}

.overlay-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 100%;
	justify-content: space-between;
}

.overlay-meta {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.issue-badge {
	background: rgba(255,255,255,0.2);
	color: white;
	padding: 3px 8px;
	border-radius: 3px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.magazine-date {
	font-size: 11px;
	color: rgba(255,255,255,0.9);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.access-badge {
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-weight: 600;
	margin-left: auto;
}

.access-badge.free {
	background: #27ae60;
}

.access-badge.subscription {
	background: #667eea;
}

.access-badge.owned {
	background: #27ae60;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.overlay-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.3px;
	flex-grow: 1;
	display: flex;
	align-items: center;
}

.overlay-title a {
	color: white;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.overlay-title a:hover {
	opacity: 0.9;
}

.overlay-info {
	display: flex;
	gap: 12px;
	align-items: center;
	font-size: 12px;
	color: rgba(255,255,255,0.9);
}

.info-item {
	display: flex;
	align-items: center;
	gap: 4px;
}

.overlay-price {
	font-size: 18px;
	font-weight: 700;
	color: white;
	margin-left: auto;
}

.overlay-actions {
	display: flex;
	gap: 8px;
	width: 100%;
}

.btn {
	padding: 8px 14px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	white-space: nowrap;
}

.btn-primary {
	background: #333;
	color: white;
}

.btn-primary:hover {
	background: #555;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
	background: #f5f5f5;
	color: #333;
	border: 1px solid #ddd;
}

.btn-secondary:hover {
	background: #e8e8e8;
	border-color: #999;
}

.overlay-actions .btn {
	flex: 1;
	justify-content: center;
	background: white;
	color: #333;
	border: none;
	transition: all 0.2s ease;
}

.overlay-actions .btn:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
}

.overlay-actions .btn-secondary {
	background: rgba(255,255,255,0.2);
	color: white;
	backdrop-filter: blur(10px);
}

.overlay-actions .btn-secondary:hover {
	background: rgba(255,255,255,0.3);
}

/* ============================================
   List View Styles
   ============================================ */

.magazine-grid[data-view="list"] .magazine-card {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 30px;
}

.magazine-grid[data-view="list"] .magazine-cover {
	aspect-ratio: 3/4;
}

.magazine-grid[data-view="list"] .magazine-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px 15px 15px 0;
}

.magazine-grid[data-view="list"] .magazine-title {
	font-size: 28px;
	margin-bottom: 15px;
}

.magazine-grid[data-view="list"] .magazine-excerpt {
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.magazine-meta {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 8px;
}

.magazine-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px 0;
}

.magazine-title a {
	color: #1f2937;
	text-decoration: none;
}

.magazine-title a:hover {
	color: #374151;
}

.magazine-excerpt {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
	margin: 0 0 12px 0;
}

.magazine-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.magazine-actions {
	display: flex;
	gap: 8px;
}

/* ============================================
   Empty States
   ============================================ */

.no-results {
	text-align: center;
	padding: 80px 20px;
	grid-column: 1 / -1;
}

.no-results-icon {
	font-size: 64px;
	margin-bottom: 20px;
	opacity: 0.3;
}

.no-results h3 {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin: 0 0 10px 0;
}

.no-results p {
	font-size: 16px;
	color: #666;
	margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
	.magazine-grid {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	}
}

@media (max-width: 768px) {
	.pulsecast-magazine-archive {
		padding: 40px 15px;
	}

	.archive-title {
		font-size: 36px;
	}

	.archive-description {
		font-size: 16px;
	}

	.filters-row {
		flex-direction: column;
	}

	.filter-group {
		width: 100%;
	}

	.view-toggle {
		width: 100%;
		justify-content: center;
	}

	.magazine-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 30px 20px;
	}

	.magazine-grid[data-view="list"] .magazine-card {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.magazine-grid[data-view="list"] .magazine-cover {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.magazine-grid[data-view="list"] .magazine-title {
		font-size: 22px;
	}

	.magazine-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.magazine-actions {
		width: 100%;
	}

	.btn {
		flex: 1;
		justify-content: center;
	}

	.nav-menu {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}
}

@media (max-width: 480px) {
	.archive-title {
		font-size: 28px;
	}

	.magazine-grid {
		grid-template-columns: 1fr;
	}

	.magazine-title {
		font-size: 18px;
	}

	.search-box {
		max-width: 100%;
	}

	.magazine-search-input {
		font-size: 15px;
		padding: 15px 50px 15px 20px;
	}
}

/* ============================================
   Single Magazine Styles
   ============================================ */

.pulsecast-single-magazine {
	background: #ffffff;
	min-height: 100vh;
}

.single-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 100px 20px 40px;
}

.magazine-article {
	background: white;
}

.magazine-hero {
	margin-bottom: 60px;
}

/* Hero Cover - Full Width with Overlay */
.hero-cover {
	position: relative;
	width: 100%;
	max-height: 600px;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.1);
	margin-bottom: 40px;
}

.hero-cover-image {
	width: 100%;
	height: auto;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
	filter: brightness(0.9);
	transition: filter 0.3s ease;
}

.hero-cover:hover .hero-cover-image {
	filter: brightness(0.95);
}

/* Hero Overlay */
.hero-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 60px;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.hero-content {
	max-width: 800px;
}

/* Hero Title */
.hero-title {
	font-family: 'Playfair Display', 'Georgia', serif;
	font-size: 48px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -1px;
	margin: 0 0 15px 0;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	color: white;
}

/* Hero Meta */
.hero-meta {
	display: flex;
	gap: 15px;
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.9;
	flex-wrap: wrap;
}

.hero-meta span {
	background: rgba(255,255,255,0.15);
	padding: 6px 16px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

/* Hero Status */
.hero-status {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
	align-items: center;
}

.hero-format,
.hero-access {
	display: flex;
	align-items: center;
	gap: 12px;
}

.format-label,
.access-label {
	background: rgba(255,255,255,0.16);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255,255,255,0.9);
	backdrop-filter: blur(10px);
}

.access-price {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255,255,255,0.95);
}

/* Hero CTA */
.hero-cta {
	margin-top: 25px;
}

.hero-cta-button {
	padding: 14px 32px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	transition: all 0.3s ease;
}

.hero-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.hero-cta-button .dashicons {
	width: 18px;
	height: 18px;
	font-size: 18px;
}

/* Magazine Toolbar */
.magazine-toolbar {
	max-width: 1200px;
	margin: 0 auto 30px auto;
	padding: 0 30px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 20px;
	align-items: center;
}

.toolbar-breadcrumbs {
	flex: 1;
}

.breadcrumb-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
	text-decoration: none;
	transition: color 0.2s ease;
}

.breadcrumb-link:hover {
	color: #333;
}

.breadcrumb-link .dashicons {
	width: 16px;
	height: 16px;
	font-size: 16px;
}

/* Toolbar Badges */
.toolbar-badges {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.toolbar-badge {
	padding: 6px 12px;
	border-radius: 14px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #f2f2f8;
	color: #555;
	font-weight: 600;
}

.badge-format {
	background: rgba(102, 126, 234, 0.12);
	color: #4455c5;
}

.badge-access {
	background: rgba(118, 75, 162, 0.12);
	color: #7a4fb0;
}

.badge-price {
	background: rgba(39, 174, 96, 0.12);
	color: #1f8a54;
}

/* Toolbar Share */
.toolbar-share {
	display: flex;
	align-items: center;
	gap: 12px;
}

.share-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #4b5563;
	font-weight: 600;
}

.share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f5f5f5;
	color: #374151;
	text-decoration: none;
	transition: all 0.2s ease;
}

.share-btn:hover {
	background: #333;
	color: white;
	transform: translateY(-2px);
}

.share-btn .dashicons {
	width: 16px;
	height: 16px;
	font-size: 16px;
}

.share-btn svg {
	width: 16px;
	height: 16px;
	display: block;
}

.share-btn.x {
	font-weight: 600;
	font-size: 14px;
}

.share-btn.whatsapp svg {
	width: 16px;
	height: 16px;
}

.share-btn.x:hover {
	background: #000;
	color: white;
}

.share-btn.whatsapp:hover {
	background: #25D366;
	color: white;
}

/* Magazine Summary */
.magazine-summary {
	background: #fafafa;
	padding: 40px 0;
	margin: 0 -20px 60px;
}

.summary-wrapper {
	max-width: 90%;
	margin: 0 auto;
	padding: 0 40px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.summary-content {
	padding: 20px;
	font-size: 18px;
	line-height: 1.8;
	color: #333;
}

.summary-content p {
	margin-bottom: 20px;
}

.summary-content h2,
.summary-content h3 {
	margin-top: 40px;
	margin-bottom: 20px;
	color: #1a1a1a;
}

.summary-content h2 {
	font-size: 32px;
	font-weight: 700;
}

.summary-content h3 {
	font-size: 24px;
	font-weight: 600;
}

/* Related Magazines Section */
.magazine-related-section {
	margin-top: 80px;
	padding-top: 60px;
	border-top: 1px solid #e8e8e8;
}

.related-wrapper {
	max-width: 1400px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 10px 0;
	font-family: 'Georgia', serif;
}

.section-subtitle {
	font-size: 16px;
	color: #666;
	margin: 0;
}

/* Reuse magazine-grid styles for related magazines */
.magazine-related-section .magazine-grid {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

/* Responsive Single Magazine */
@media (max-width: 768px) {
	.single-container {
		padding: 80px 20px 40px;
	}

	.hero-overlay {
		padding: 30px 20px;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-meta {
		gap: 10px;
		font-size: 12px;
	}

	.magazine-toolbar {
		grid-template-columns: 1fr;
		padding: 0 20px;
		gap: 12px;
	}

	.toolbar-badges {
		justify-content: flex-start;
	}

	.toolbar-share {
		justify-content: flex-start;
	}

	.magazine-summary {
		padding: 40px 0;
		margin: 0 -20px 40px;
	}

	.summary-wrapper {
		padding: 0 20px;
	}

	.summary-content {
		padding: 30px 20px;
		font-size: 16px;
	}

	.summary-content h2 {
		font-size: 24px;
	}

	.summary-content h3 {
		font-size: 20px;
	}

	.magazine-related-section .magazine-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 20px;
	}

	.section-title {
		font-size: 28px;
	}

	.section-subtitle {
		font-size: 14px;
	}
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
	align-items: start;
}

.hero-image {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
	transform: rotate(-2deg);
	transition: transform 0.3s ease;
}

.hero-image:hover {
	transform: rotate(0deg) scale(1.02);
}

.hero-cover {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 3/4;
	-o-object-fit: cover;
	   object-fit: cover;
}

.hero-content {
	color: white;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.magazine-categories {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.category-badge {
	background: rgba(255,255,255,0.2);
	color: white;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.single-title {
	font-size: 48px;
	font-weight: 300;
	letter-spacing: -1px;
	margin: 0;
	line-height: 1.2;
	font-family: 'Georgia', serif;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.single-meta {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,0.3);
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

.meta-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.meta-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.7;
}

.meta-value {
	font-size: 18px;
	font-weight: 600;
}

.single-excerpt {
	font-size: 18px;
	line-height: 1.7;
	opacity: 0.95;
	margin: 0;
}

.single-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btn-large {
	padding: 14px 32px;
	font-size: 16px;
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid rgba(255,255,255,0.5);
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-outline:hover {
	background: rgba(255,255,255,0.1);
	border-color: white;
}

.access-notice {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
}

.access-notice.owned {
	background: rgba(39, 174, 96, 0.2);
	color: white;
	border: 1px solid rgba(39, 174, 96, 0.5);
}

.access-icon {
	font-size: 16px;
}

.single-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px 80px;
}

.content-container {
	background: white;
}

.content-body {
	font-size: 18px;
	line-height: 1.8;
	color: #333;
}

.content-body h2 {
	font-size: 32px;
	font-weight: 600;
	margin: 48px 0 24px;
	color: #1a1a1a;
}

.content-body h3 {
	font-size: 24px;
	font-weight: 600;
	margin: 36px 0 18px;
	color: #1a1a1a;
}

.content-body p {
	margin: 0 0 24px;
}

.content-body img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 32px 0;
}

.content-body a {
	color: #667eea;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.content-body a:hover {
	color: #764ba2;
}

.content-body ul,
.content-body ol {
	margin: 24px 0;
	padding-left: 32px;
}

.content-body li {
	margin: 12px 0;
}

.content-body blockquote {
	margin: 32px 0;
	padding: 24px 32px;
	border-left: 4px solid #667eea;
	background: #f9f9f9;
	font-style: italic;
	color: #666;
}

/* Responsive Single Magazine */
@media (max-width: 768px) {
	.single-hero {
		padding: 40px 20px;
	}

	.hero-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.hero-image {
		max-width: 300px;
		margin: 0 auto;
		transform: rotate(0deg);
	}

	.single-title {
		font-size: 32px;
	}

	.single-meta {
		gap: 20px;
	}

	.meta-value {
		font-size: 16px;
	}

	.single-excerpt {
		font-size: 16px;
	}

	.single-actions {
		flex-direction: column;
	}

	.btn-large {
		width: 100%;
		justify-content: center;
	}

	.content-body {
		font-size: 16px;
	}

	.content-body h2 {
		font-size: 24px;
	}

	.content-body h3 {
		font-size: 20px;
	}
}
#wpbody-content .placeholder\:text-gray-400::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
#wpbody-content .placeholder\:text-gray-400::placeholder {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
#wpbody-content .hover\:border-gray-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
#wpbody-content .hover\:border-gray-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
#wpbody-content .hover\:border-gray-800:hover {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
#wpbody-content .hover\:bg-gray-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
#wpbody-content .hover\:bg-gray-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
#wpbody-content .hover\:text-gray-800:hover {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
#wpbody-content .hover\:text-indigo-500:hover {
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}
#wpbody-content .focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
#wpbody-content .focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
#wpbody-content .focus\:ring-inset:focus {
  --tw-ring-inset: inset;
}
#wpbody-content .focus\:ring-gray-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity, 1));
}
#wpbody-content .focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}
#wpbody-content .focus-visible\:outline:focus-visible {
  outline-style: solid;
}
#wpbody-content .focus-visible\:outline-2:focus-visible {
  outline-width: 2px;
}
#wpbody-content .focus-visible\:outline-offset-2:focus-visible {
  outline-offset: 2px;
}
#wpbody-content .focus-visible\:outline-indigo-600:focus-visible {
  outline-color: #4f46e5;
}
#wpbody-content .disabled\:opacity-50:disabled {
  opacity: 0.5;
}
@media (min-width: 640px) {

  #wpbody-content .sm\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  #wpbody-content .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  #wpbody-content .sm\:ml-6 {
    margin-left: 1.5rem;
  }

  #wpbody-content .sm\:flex {
    display: flex;
  }

  #wpbody-content .sm\:max-w-xs {
    max-width: 20rem;
  }

  #wpbody-content .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #wpbody-content :is(.sm\:space-x-6 > :not([hidden]) ~ :not([hidden])) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  #wpbody-content :is(.sm\:space-x-8 > :not([hidden]) ~ :not([hidden])) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  #wpbody-content .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #wpbody-content .sm\:text-center {
    text-align: center;
  }

  #wpbody-content .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  #wpbody-content .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  #wpbody-content .sm\:leading-6 {
    line-height: 1.5rem;
  }
}
@media (min-width: 768px) {

  #wpbody-content .md\:flex {
    display: flex;
  }

  #wpbody-content .md\:flex-1 {
    flex: 1 1 0%;
  }

  #wpbody-content :is(.md\:space-x-8 > :not([hidden]) ~ :not([hidden])) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  #wpbody-content :is(.md\:space-y-0 > :not([hidden]) ~ :not([hidden])) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  #wpbody-content .md\:border-l-0 {
    border-left-width: 0px;
  }

  #wpbody-content .md\:border-t-4 {
    border-top-width: 4px;
  }

  #wpbody-content .md\:pb-0 {
    padding-bottom: 0px;
  }

  #wpbody-content .md\:pl-0 {
    padding-left: 0px;
  }

  #wpbody-content .md\:pt-4 {
    padding-top: 1rem;
  }
}
@media (min-width: 1024px) {

  #wpbody-content .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  #wpbody-content .lg\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  #wpbody-content .lg\:mt-0 {
    margin-top: 0px;
  }

  #wpbody-content .lg\:max-w-none {
    max-width: none;
  }

  #wpbody-content .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #wpbody-content :is(.lg\:divide-x > :not([hidden]) ~ :not([hidden])) {
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  }

  #wpbody-content :is(.lg\:divide-y-0 > :not([hidden]) ~ :not([hidden])) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
  }

  #wpbody-content .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  #wpbody-content .lg\:pt-0 {
    padding-top: 0px;
  }
}
@media (min-width: 1280px) {

  #wpbody-content .xl\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  #wpbody-content .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  #wpbody-content .xl\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
