*, :before, :after {
    box-sizing: border-box;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    border: 0 solid #e5e7eb;
}

body * {
    scroll-margin-top: 110px;
}

/* TODO find and remove unused properties */
:root {
    --background: 30 25% 97%;
    --foreground: 25 20% 14%;
    --card: 30 20% 99%;
    --card-foreground: 25 20% 14%;
    --popover: 30 20% 99%;
    --popover-foreground: 25 20% 14%;
    --primary: 25 30% 22%;
    --primary-foreground: 30 25% 97%;
    --secondary: 30 15% 93%;
    --secondary-foreground: 25 20% 14%;
    --muted: 30 12% 92%;
    --muted-foreground: 25 10% 46%;
    --accent: 36 40% 50%;
    --accent-foreground: 30 25% 97%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 30 15% 88%;
    --input: 30 15% 88%;
    --ring: 25 30% 22%;
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: .75rem;
    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
    --background-text: hsl(25deg 10% 32.79%);
}

html {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: 'Inter Variable', system-ui, sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: inherit;
    margin: 0;
    position: relative;
}

body::after {
    position: absolute;
    inset: 0;
    content: '';
    background-color: rgba(0, 0, 0);
    opacity: 0;
    transition-duration: 300ms;
    transition-property: opacity;
    pointer-events: none;
}

@media (max-width: 767px) {
    body.navbar-menu-open::after {
        opacity: 0.7;
    }
}

a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
}

button, input, optgroup, select, textarea {
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

button, select {
    text-transform: none;
}

button, [role="button"] {
    cursor: pointer;
}

button, input:where([type="button"]), input:where([type="reset"]), input:where([type="submit"]) {
    -webkit-appearance: button;
    background-color: #0000;
    background-image: none;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    transition-property: color, background-color, border-color;
    transition-duration: 150ms;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn:hover, .btn:focus {
    background-color: hsl(var(--primary) / .9);
}

.btn:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: rgb(249, 247, 245) 0px 0px 0px 2px, rgb(73, 53, 39) 0px 0px 0px 4px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn svg {
    pointer-events: none;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.btn.btn-sm {
    padding: 0.5rem 1rem;
}

.btn.btn-accent {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.btn.btn-accent:hover,
.btn.btn-accent:focus {
    background-color: hsl(var(--accent) / 0.9);
}

.btn.btn-outline {
    border-width: 1px;
    border-color: hsl(var(--primary-foreground) / 0.3);
    background-color: transparent;
    color: hsl(var(--primary-foreground));
}

.btn.btn-outline:hover,
.btn.btn-outline:focus {
    background-color: hsl(var(--primary-foreground) / 0.1);
    color: hsl(var(--primary-foreground));
}

.btn.btn-icon-animate-right .lucide,
.btn.btn-icon-animate-right .lucide {
    transform: translateX(0%);
    transition-property: transform;
    transition-duration: 300ms;
}

.btn.btn-icon-animate-right:hover .lucide,
.btn.btn-icon-animate-right:focus-visible .lucide {
    transform: translateX(25%);
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border));
    background-color: hsl(var(--card) / .95);
}

body.admin-bar .header {
    top: 32px;
}

.header-top-bar {
    background-color: hsl(var(--primary));
    border-bottom: 1px solid hsl(var(--border));
}

.header-top-bar-content {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 72rem;
    align-items: center;
    padding: 0.5rem 1rem;
    column-gap: 1.25rem;
    row-gap: 0.25rem;
}

.header-top-bar-content > a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    line-height: 1rem;
    transition-duration: 150ms;
    transition-property: color;
    color: hsl(var(--primary-foreground) / .8);
}

.header-top-bar-content > a:hover,
.header-top-bar-content > a:focus {
    color: hsl(var(--primary-foreground));
}

.header-top-bar-content .lucide {
    height: 0.75rem;
    width: 0.75rem;
}

.navbar {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 72rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    gap: 1rem;
    position: relative;
}

.navbar .navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar .navbar-logo .navbar-logo-icon {
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: hsl(var(--primary));
    flex-shrink: 0;
    transition-duration: 150ms;
    transition-property: background-color;
}

.navbar .navbar-logo:hover .navbar-logo-icon {
    background-color: hsl(var(--primary) / .9);
}

.navbar .navbar-logo .navbar-logo-icon .lucide {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--primary-foreground));
}

.navbar .navbar-logo .navbar-logo-text {
    display: flex;
    flex-direction: column;
}

.navbar .navbar-logo .navbar-logo-text-primary {
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25;
}

.navbar .navbar-logo .navbar-logo-text-secondary {
    color: hsl(var(--muted-foreground));
    font-size: 0.75rem;
    line-height: 1.25;
}

.navbar ul.navbar-contents {
    list-style: none;
    display: none;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    .navbar ul.navbar-contents {
        display: flex;
    }

    .header .navbar-contents-mobile-wrapper {
        display: none !important;
    }
}

.header .navbar-contents-mobile-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    border-top-width: 1px;
    border-bottom-width: 1px;
    padding: 0.75rem 1rem;
    border-color: hsl(var(--border));
    background-color: hsl(var(--card));
}

.header .navbar-contents-mobile-wrapper.menu-open {
    display: block;
}

.header .navbar-contents-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header .navbar-contents-mobile-wrapper .menu-item a {
    width: 100%;
}

.header .navbar-contents .menu-item {
    display: inline-block;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    transition-duration: 150ms;
    transition-property: color, background-color;
    color: hsl(var(--muted-foreground));
}

.header .navbar-contents .menu-item a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
}

.header .navbar-contents .menu-item:hover,
.header .navbar-contents .menu-item:focus,
.header .navbar-contents .menu-item.current-menu-item {
    color: hsl(var(--foreground));
    background-color: hsl(var(--secondary));
}

.navbar .navbar-toggle-button {
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition-property: color, background-color;
    transition-duration: 150ms;
    color: hsl(var(--foreground));
}

.navbar .navbar-toggle-button:hover {
    background-color: hsl(var(--secondary));
}

@media (min-width: 768px) {
    .navbar .navbar-toggle-button {
        display: none;
    }
}

.navbar .navbar-toggle-button .lucide {
    height: 1.25rem;
    width: 1.25rem;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-radius: 9999px;
    transition-property: color, background-color;
    transition-duration: 150ms;
}

.pagination .page-numbers:hover,
.pagination .page-numbers:focus {
    background-color: hsl(var(--primary) / .9);
}

.pagination .page-numbers.current {
    background-color: hsl(var(--accent));
}

.pagination .page-numbers .lucide {
    width: 1.25rem;
    height: 1.25rem;
}

/* ============================================================================= */
/* Home page */
/* ============================================================================= */

.homepage-hero-section {
    position: relative;
    overflow: hidden;
    background-color: hsl(var(--primary));
}

.homepage-hero-section .hero-image-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.homepage-hero-section .hero-image-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    opacity: 0.25;
}

.homepage-hero-section .hero-content {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 72rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    .homepage-hero-section .hero-content {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.homepage-hero-section .hero-content .hero-title-1 {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--primary-foreground) / .7);
}

.homepage-hero-section .hero-content .hero-title-2 {
    max-width: 36rem;
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    color: hsl(var(--primary-foreground));
}

@media (min-width: 768px) {
    .homepage-hero-section .hero-content .hero-title-2 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .homepage-hero-section .hero-content .hero-title-2 {
        font-size: 3.5rem;
    }
}

.homepage-hero-section .hero-content .hero-quote {
    margin-top: 1.25rem;
    max-width: 32rem;
    font-size: 1rem;
    line-height: 1.625;
    color: hsl(var(--primary-foreground) / .8);
}

@media (min-width: 768px) {
    .homepage-hero-section .hero-content .hero-quote {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

.homepage-hero-section .hero-content .hero-quote-author {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-style: italic;
    color: hsl(var(--primary-foreground) / .6);
}

.homepage-hero-section .hero-content .hero-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.homepage-interior {
    background-color: hsl(var(--background));
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .homepage-interior {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.homepage-interior .homepage-interior-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 72rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.homepage-interior .homepage-interior-contents {
    display: grid;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .homepage-interior .homepage-interior-contents {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.homepage-interior .homepage-interior-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 1rem;
}

.homepage-interior .homepage-interior-image-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.homepage-interior .homepage-interior-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.homepage-interior .homepage-interior-services-title {
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.875rem;
    line-height: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {
    .homepage-interior .homepage-interior-services-title {
        font-size: 2rem;
        line-height: 2.125rem;
    }
}

.homepage-interior .homepage-interior-mass-times {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.homepage-interior .homepage-interior-mass-times-item {
    border-radius: 0.75rem;
    border-width: 1px;
    padding: 1.25rem;
    border-color: hsl(var(--border));
    background-color: hsl(var(--card));
}

.homepage-interior .homepage-interior-mass-times-item-title {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--accent));
}

.homepage-interior .homepage-interior-mass-times-time-cards.time-cards-short {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.homepage-interior .homepage-interior-mass-times-time-cards.time-cards-long {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.homepage-interior .homepage-interior-mass-times-time-card-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
    background-color: hsl(var(--secondary));
}

.homepage-interior .homepage-interior-mass-times-time-card-item .lucide {
    height: 1rem;
    width: 1rem;
    color: hsl(var(--accent));
}

.homepage-interior .homepage-interior-mass-times-time-card-item .time-cards-time {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: hsl(var(--foreground));
}

.homepage-interior .homepage-interior-mass-times-time-card-item .time-cards-season {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: hsl(var(--muted-foreground));
}

.homepage-interior .homepage-interior-mass-times-card-text {
    font-size: 0.875rem;
    line-height: 1.625;
    color: hsl(var(--muted-foreground));
}

.homepage-posts {
    background-color: hsl(var(--secondary) / .5);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .homepage-posts {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.homepage-posts .homepage-posts-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 72rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.homepage-posts .homepage-posts-title-wrapper {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .homepage-posts .homepage-posts-title-wrapper {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.homepage-posts .homepage-posts-title-text {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--accent));
}

.homepage-posts .homepage-posts-title {
    margin-top: 0.25rem;
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {
    .homepage-posts .homepage-posts-title {
        font-size: 2rem;
        line-height: 2.125rem;
    }
}

.homepage-posts .homepage-posts-button-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.homepage-gallery {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: hsl(var(--card));
}

@media (min-width: 768px) {
    .homepage-gallery {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.homepage-gallery-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 72rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.homepage-gallery-container .homepage-gallery-title-wrapper {
    margin-bottom: 2.5rem;
    text-align: center;
}

.homepage-gallery-container .homepage-gallery-title-text {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--accent));
}

.homepage-gallery-container .homepage-gallery-title {
    margin-top: 0.25rem;
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {
    .homepage-gallery-container .homepage-gallery-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.homepage-gallery-container .homepage-gallery-button-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.homepage-gallery-items-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .homepage-gallery-items-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

/* ============================================================================= */
/* Footer */
/* ============================================================================= */

.footer {
    border-top-width: 1px;
    border-color: hsl(var(--border));
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.footer .footer-content-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 72rem;
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .footer .footer-content-wrapper {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.footer .footer-content {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer .footer-content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer .footer-content-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer .footer-content-item .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer .footer-content-item .footer-logo .footer-logo-icon {
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: hsl(var(--primary-foreground) / 0.1);
}

.footer .footer-content-item .footer-logo .footer-logo-icon .lucide {
    height: 1rem;
    width: 1rem;
    color: hsl(var(--primary-foreground));
}

.footer .footer-content-item .footer-logo-text-primary {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25;
}

.footer .footer-content-item .footer-logo-text-secondary {
    font-size: 0.75rem;
    line-height: 1.25;
    color: hsl(var(--primary-foreground) / .7);
}

.footer .footer-title {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--primary-foreground) / 0.5);
    align-self: start;
}

.footer .footer-nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-nav-wrapper .menu-item a,
.footer .footer-link {
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition-property: color;
    transition-duration: 150ms;
    color: hsl(var(--primary-foreground) / .7);
}

.footer .footer-nav-wrapper .menu-item a:hover,
.footer .footer-nav-wrapper .menu-item a:focus,
.footer .footer-nav-wrapper .menu-item.current-menu-item a,
.footer .footer-link:hover,
.footer .footer-link:focus {
    color: hsl(var(--primary-foreground));
}

.footer .footer-content-text {
    font-size: 0.875rem;
    line-height: 1.625;
    color: hsl(var(--primary-foreground) / .7);
}

.footer .footer-contact-items-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.75rem;
}

.footer .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--primary-foreground) / .7);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.footer .footer-contact-item .lucide {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}

.footer .footer-bottom-wrapper {
    border-color: hsl(var(--primary-foreground) / .1);
    border-top-width: 1px;
}

.footer .footer-bottom {
    margin-left: auto;
    margin-right: auto;
    max-width: 72rem;
    padding: 1rem;
}

.footer .footer-bottom a {
    transition-property: color;
    transition-duration: 150ms;
    color: hsl(var(--primary-foreground) / .6);
}

.footer .footer-bottom a:hover,
.footer .footer-bottom a:focus {
    color: hsl(var(--primary-foreground) / .9);
}

.footer .footer-bottom-text {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1rem;
    color: hsl(var(--primary-foreground) / .4);
}

/* ============================================================================= */
/* Posts items grid and post items */
/* ============================================================================= */

.posts-items-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .posts-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .posts-items-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.posts-grid-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0.75rem;
    border-width: 1px;
    transition-property: box-shadow;
    transition-duration: 150ms;
    border-color: hsl(var(--border));
    background-color: hsl(var(--card));
    padding: 0.25rem;
}

.posts-grid-item:hover,
.posts-grid-item:focus {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.posts-grid-item .posts-grid-item-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    flex-grow: 1;
    padding: 1.25rem;
}

.posts-grid-item .posts-grid-item-image {
    position: relative;
    width: 100%;
    height: 7rem;
    overflow: hidden;
    border-radius: 0.5rem;
}

.posts-grid-item .posts-grid-item-image img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition-property: transform;
    transition-duration: 300ms;
}

.posts-grid-item:hover .posts-grid-item-image img,
.posts-grid-item:focus-within .posts-grid-item-image img {
    transform: scale(1.05);
}

.posts-grid-item .posts-grid-item-date {
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--accent));
}

.posts-grid-item .posts-grid-item-title {
    margin-top: 0.5rem;
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.375;
    color: hsl(var(--foreground));
}

.posts-grid-item .posts-grid-item-description {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: hsl(var(--muted-foreground));
}

.posts-grid-item .posts-grid-item-title,
.posts-grid-item .posts-grid-item-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.posts-grid-item .posts-grid-item-title {
    -webkit-line-clamp: 2;
}

.posts-grid-item .posts-grid-item-read-more {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: 150ms;
    color: hsl(var(--accent));
}

.posts-grid-item:hover .posts-grid-item-read-more,
.posts-grid-item:focus .posts-grid-item-read-more {
    color: hsl(var(--foreground));
}

.posts-grid-item .posts-grid-item-read-more .lucide {
    height: 1rem;
    width: 1rem;
    transition-property: transform;
    transition-duration: 150ms;
}

.posts-grid-item:hover .posts-grid-item-read-more .lucide,
.posts-grid-item:focus .posts-grid-item-read-more .lucide {
    transform: translateX(0.125rem);
}

/* ============================================================================= */
/* Intentions page */
/* ============================================================================= */

.intentions-page-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.intentions-page-weekday-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .intentions-page-weekday-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.intentions-page-card {
    border-width: 1px;
    background-color: hsl(var(--card));
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.intentions-page-card:hover,
.intentions-page-card:focus {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.intentions-page-card-highlight {
    border: 2px solid hsl(var(--accent));
}

.intentions-page-card-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.intentions-page-day-name {
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.intentions-page-day-date {
    font-size: 1.25rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}

.intentions-page-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.intentions-page-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: hsl(var(--secondary) / .5);
}

.intentions-page-time-wrapper {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 0.375rem;
    padding-top: 0.125rem;
}

.intentions-page-time-wrapper .lucide,
.intentions-page-location-wrapper .lucide {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--accent));
}

.intentions-page-time {
    font-size: 0.875rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: hsl(var(--foreground));
}

.intentions-page-text {
    font-size: 0.875rem;
    line-height: 1.625;
    color: hsl(var(--foreground) / .75);
}

.intentions-page-gregorian-title {
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
}

.intentions-page-gregorian-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: hsl(var(--secondary) / .5);
}

.intentions-page-location-wrapper {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.25rem;
}

.intentions-page-location-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--accent));
}

.intentions-page-gregorian-intention {
    color: hsl(var(--foreground));
    font-weight: 500;
}

/* ============================================================================= */
/* Gallery items grid and gallery items */
/* ============================================================================= */

.gallery-grid-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.75rem;
    border-width: 1px;
    border-color: hsl(var(--border));
}

.gallery-grid-item img {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    -o-object-fit: cover;
    object-fit: cover;
    transition-property: transform;
    transition-duration: 500ms;
}

.gallery-grid-item:hover img,
.gallery-grid-item:focus-visible img {
    transform: scale(1.05);
}

.gallery-grid-item .gallery-grid-item-overlay {
    position: absolute;
    inset: 0;
    transition-property: background-color;
    transition-duration: 300ms;
    background-color: hsl(var(--foreground) / 0);
}

.gallery-grid-item:hover .gallery-grid-item-overlay,
.gallery-grid-item:focus-visible .gallery-grid-item-overlay,
.gallery-grid-item-show-text .gallery-grid-item-overlay {
    background-color: hsl(var(--foreground) / .2);
}

.gallery-grid-item .gallery-grid-item-overlay-text-wrapper {
    position: absolute;
    inset: 0;
    top: auto;
    transform: translateY(100%);
    padding: 0.75rem;
    transition-property: transform;
    transition-duration: 300ms;
}

.gallery-grid-item:hover .gallery-grid-item-overlay-text-wrapper,
.gallery-grid-item:focus-visible .gallery-grid-item-overlay-text-wrapper,
.gallery-grid-item-show-text .gallery-grid-item-overlay-text-wrapper {
    transform: translateY(0%);
}

.gallery-grid-item .gallery-grid-item-overlay-title,
.gallery-grid-item .gallery-grid-item-overlay-date {
    font-weight: 500;
    filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
    color: hsl(var(--card));
}

.gallery-grid-item .gallery-grid-item-overlay-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.gallery-grid-item .gallery-grid-item-overlay-date {
    margin-top: 0.25rem;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: hsl(var(--muted));
    opacity: 0.8;
}

@media (min-width: 768px) {
    .gallery-grid-item .gallery-grid-item-overlay-title {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .gallery-grid-item .gallery-grid-item-overlay-date {
        font-size: 0.75rem;
        line-height: 1rem;
    }
}

/* ============================================================================= */
/* Generic page style */
/* ============================================================================= */

.generic-page-header-wrapper {
    position: relative;
    border-color: hsl(var(--border));
    border-bottom-width: 1px;
    background-color: hsl(var(--card));
    background-image: var(--banner-bg-url);
    background-size: cover;
    background-position: center;
}

.generic-page-header-wrapper::before {
    position: absolute;
    content: '';
    inset: 0;
    background-color: hsl(var(--primary) / .8);
    z-index: 0;
}

.generic-page-header {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 64rem;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 3.5rem 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .generic-page-header {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.generic-page-header-title {
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 2rem;
    line-height: 2.125rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    color: hsl(var(--primary-foreground));
}

@media (min-width: 768px) {
    .generic-page-header-title {
        font-size: 2.5rem;
        line-height: 1;
    }
}

.generic-page-header-subtitle {
    max-width: 32rem;
    color: hsl(var(--primary-foreground) / .8);
}

.generic-page-header-title a,
.generic-page-header-subtitle a {
    color: hsl(var(--accent-foreground));
}

.generic-page-content-wrapper {
    background-color: hsl(var(--background));
}

.generic-page-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 48rem;
    padding: 3rem 1rem;
    color: hsl(var(--background-text));
}

.generic-page-content.generic-page-content-wide {
    max-width: 60rem;
}

@media (min-width: 768px) {
    .generic-page-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Text post content styles */

.text-post-content {
    line-height: 1.8;
    color: hsl(var(--foreground));
}

.text-post-content p {
    margin-bottom: 1.25rem;
}

.text-post-content h2 {
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: hsl(var(--foreground));
}

.text-post-content h3 {
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: hsl(var(--foreground));
}

.text-post-content ul,
.text-post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.text-post-content li {
    margin-bottom: 0.5rem;
}

.text-post-content img {
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}

.text-post-content blockquote {
    border-left: 3px solid hsl(var(--accent));
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: hsl(var(--muted-foreground));
}

/* ============================================================================= */
/* History */
/* ============================================================================= */

.about-page-intro-grid {
    display: grid;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-page-intro-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }
}

.about-page-intro-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
}

.about-page-intro-image {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
}

.about-page-intro-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-page-intro-header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-page-intro-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.25rem;
    width: 2.25rem;
    flex-shrink: 0;
    border-radius: 9999px;
    background-color: hsl(var(--accent) / 0.1);
}

.about-page-intro-icon-wrapper .lucide {
    height: 1rem;
    width: 1rem;
    color: hsl(var(--accent));
}

.about-page-intro-title {
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.about-page-intro-text {
    line-height: 1.625;
    color: hsl(var(--muted-foreground));
}

.about-page-text-section {
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-color: hsl(var(--border));
    background-color: hsl(var(--card));
}

.about-page-text-heading {
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {
    .about-page-text-heading {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

.about-page-text-wrapper {
    color: hsl(var(--muted-foreground));
}

.about-page-timeline-section {
    margin-left: auto;
    margin-right: auto;
    max-width: 64rem;
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .about-page-timeline-section {
        padding: 4rem 1rem;
    }
}

.about-page-timeline-header {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.about-page-timeline-main-title {
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.about-page-timeline-subtitle {
    max-width: 28rem;
    color: hsl(var(--muted-foreground));
}

.about-page-timeline-container {
    position: relative;
}

.about-page-timeline-list {
    display: flex;
    flex-direction: column;
}

.about-page-timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .about-page-timeline-item:not(.about-page-timeline-item-last)::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background-color: hsl(var(--border));
    }
}

@media (min-width: 768px) {
    .about-page-timeline-mobile {
        display: none;
    }
}

.about-page-timeline-mobile-row {
    display: flex;
    gap: 1rem;
}

.about-page-timeline-mobile-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page-timeline-badge {
    display: flex;
    height: 3rem;
    width: 3rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 2px solid hsl(var(--accent));
    background-color: hsl(var(--card));
}

.about-page-timeline-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    color: hsl(var(--accent));
}

.about-page-timeline-mobile-connector {
    height: 100%;
    width: 1px;
    background-color: hsl(var(--border));
}

.about-page-timeline-mobile-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
}

.about-page-timeline-item:not(:last-of-type) .about-page-timeline-mobile-content {
    padding-bottom: 2rem;
}

.about-page-timeline-desktop {
    display: none;
}

.about-page-timeline-item:not(:last-of-type) .about-page-timeline-desktop {
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .about-page-timeline-desktop {
        display: flex;
        width: 100%;
        align-items: flex-start;
    }
}

.about-page-timeline-desktop-left,
.about-page-timeline-desktop-right {
    width: 50%;
}

.about-page-timeline-desktop-left {
    display: flex;
    justify-content: flex-end;
    padding-right: 2.5rem;
}

.about-page-timeline-desktop-right {
    padding-left: 2.5rem;
}

.about-page-timeline-dot-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.about-page-timeline-dot {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 2px solid hsl(var(--accent));
    background-color: hsl(var(--card));
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.about-page-timeline-dot span {
    font-size: 10px;
    font-weight: 700;
    color: hsl(var(--accent));
}

.about-page-timeline-card {
    max-width: 28rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    padding: 1.5rem;
    transition: all 0.2s;
}

.about-page-timeline-card:hover {
    border-color: hsl(var(--accent) / 0.3);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.about-page-timeline-title {
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.about-page-timeline-text {
    margin-top: 0.5rem;
    line-height: 1.625;
    color: hsl(var(--muted-foreground));
}

.about-page-quote-container {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 48rem;
    gap: 1rem;
    padding: 3.5rem 1rem;
}

@media (min-width: 768px) {
    .about-page-quote-container {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.about-page-quote-icon-wrapper {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: hsl(var(--accent) / 0.1);
}

.about-page-quote-icon-wrapper .lucide {
    height: 1.25rem;
    width: 1.25rem;
    color: hsl(var(--accent));
}

.about-page-quote-quote {
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-style: italic;
    color: hsl(var(--foreground));
    font-size: 1.25rem;
    line-height: 1.75rem;
}

@media (min-width: 768px) {
    .about-page-quote-quote {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

.about-page-quote-source {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    font-style: normal;
}

/* ============================================================================= */
/* Contact */
/* ============================================================================= */

.contact-page-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-page-card {
    display: flex;
    gap: 1rem;
    border-radius: 0.75rem;
    border-width: 1px;
    border-color: hsl(var(--border));
    background-color: hsl(var(--card));
    padding: 1.5rem;
    transition-property: border-color, background-color;
    transition-duration: 150ms;
}

.contact-page-card:hover,
.contact-page-card:focus {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border-color: hsl(var(--accent) / .4);
}

.contact-page-card-icon {
    display: flex;
    height: 2.75rem;
    width: 2.75rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: hsl(var(--accent) / .1);
    transition-property: background-color;
    transition-duration: 150ms;
}

.contact-page-card:hover .contact-page-card-icon,
.contact-page-card:focus .contact-page-card-icon {
    background-color: hsl(var(--accent) / .15);
}

.contact-page-card-icon .lucide {
    height: 1.25rem;
    width: 1.25rem;
    color: hsl(var(--accent));
}

.contact-page-card-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-weight: 500;
    transition-property: color;
    transition-duration: 150ms;
    color: hsl(var(--foreground));
}

.contact-page-card:hover .contact-page-card-text-wrapper,
.contact-page-card:focus .contact-page-card-text-wrapper {
    color: hsl(var(--accent));
}

.contact-page-card-text-title {
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--muted-foreground));
}

.contact-page-map {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-page-map .contact-page-map-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display Variable', Georgia, serif;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
}

.contact-page-map .contact-page-map-icon-wrapper {
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: hsl(var(--accent) / .1);
}

.contact-page-map .contact-page-map-icon-wrapper .lucide {
    height: 1rem;
    width: 1rem;
    color: hsl(var(--accent));
}

.contact-page-map .contact-page-map-wrapper {
    overflow: hidden;
    border-radius: 0.75rem;
    border-width: 1px;
    border-color: hsl(var(--border));
}
