body {
    background-color: #E6D7C4;
    color: #62562E;
    font-family: Helvetica, sans-serif;
}

p {
    margin: 0;
}

hr {
    border: 1px solid #cfc2b0;
    width: 100%;
}

.custom-title {
    color: #62562E;
    font-family: Plump, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 550;
    line-height: normal;
    margin: 0;
}

.custom-subtitle {
    color: #62562E;
    font-size: 24px;
    font-weight: 700;
    /*font-size: 16px;*/
    /*text-transform: uppercase;*/
}

.custom-date {
    color: #958961;
}

.custom-tag {
    display: flex;
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    background: #707759;
}

.custom-tag-text {
    color: #D6D797;
    word-wrap: break-word;
    font-size: 14px;
}

.arrow-container {
    display: inline-block;
    position: relative;
    width: 1em;
    height: 1em;
    cursor: pointer;
    vertical-align: middle;
}

.arrow {
    position: absolute;
    width: 1em;
    height: 1em;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.arrow-container:hover .arrow,
a:hover .arrow {
    bottom: 0.5em;
    left: 0.5em;
    color: #3e361d;
}

a p {
    transition: color 0.3s ease;
}

a:hover {
    color: #3e361d;
}

a:hover p {
    color: #3e361d;
}

.list-arrow li::before {
    content: "▸ ";
    color: #3e361d;
}

.list-arrow {
    list-style: none;
}

.quickview-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.quickview-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.quickview-content {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.quickview-overlay.active .quickview-content {
    transform: scale(1);
}