/* For smaller, one-off styling needs that don't fit elsewhere */
body {
    min-height: 100svh;
}

.entry-content > *:not(:first-child) {
    margin-top: 1rem;
}

.entry-content img {
    width: 100%;
    height: fit-content;
}

.user-select-none {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;    /* IE 10+ */
  user-select: none;        /* Standard syntax */
}

#menu-toggle:focus + #menu-toggle-label {
    /* padding: var(--zero-point-five-spacer);
    border: 1px dashed; */
}

.aspect-ratio-4-3 {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}

.border-style-dashed {
    border-style: dashed;
    &&:not(
    .border-top-none,
    .border-right-none,
    .border-bottom-none,
    .border-left-none,
    .border-top-sm-none,
    .border-right-sm-none,
    .border-bottom-sm-none,
    .border-left-sm-none,
    .border-top-md-none,
    .border-right-md-none,
    .border-bottom-md-none,
    .border-left-md-none,
    .border-top-lg-none,
    .border-right-lg-none,
    .border-bottom-lg-none,
    .border-left-lg-none,
    .border-top-xl-none,
    .border-right-xl-none,
    .border-bottom-xl-none,
    .border-left-xl-none) {
        border-style: dashed !important;
    }
}

hr {
    width: 100%;
    background-color: transparent;
    border-width: 1px 0 0 0;
    border-style: dashed;
    color: var(--pc-black);
    margin: 0;
}

.top-2 {
    top: var(--two-spacer);
}

.post-content {
    max-width: 850px;
}

/* Newsletter form styles */
.gh-form {
    .gh-form-input {
        background-color: transparent;
        border-width: 1px 0 1px 1px;
        border-color: inherit;
        border-style: solid;
        padding: var(--zero-point-five-spacer);
    }
    .gh-button {
        background-color: var(--pc-black);
        color: var(--pc-white);
        padding: var(--zero-point-five-spacer);
        text-transform: uppercase;
    }
}

.w-small {
    width: 200px !important;
}
@media screen and (max-width: 781px) {
    .w-small {
        width: 100px !important;
    }
}

.w-small-alt {
    width: 75px !important;
}
@media screen and (max-width: 1079px) {
    .w-small-alt {
        width: 100% !important;
    }
}

.w-medium {
    width: 200px !important;
}
@media screen and (max-width: 1079px) {
    .w-medium {
        width: 100% !important;
    }
}

p:empty {
    display: none;
}