/* ==========================================
   KLO Lake Conditions
   Fishing report headlines
   ========================================== */

.klo-fishing-reports,
.klo-fishing-reports * {
    font-family: "Inter Tight", sans-serif !important;
}

.klo-fishing-reports {
    display: grid;
    gap: 18px;
}

.klo-fishing-report {
    margin: 0;
}

.klo-fishing-report__title {
    display: inline-block;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

.klo-fishing-report__title:hover,
.klo-fishing-report__title:focus {
    text-decoration: underline;
}

.klo-fishing-report__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ==========================================
   Lake levels
   ========================================== */

.klo-lake-levels,
.klo-lake-levels * {
    box-sizing: border-box;
    font-family: "Inter Tight", sans-serif !important;
}

.klo-lake-levels--full {
    display: grid;
    gap: 18px;
}

.klo-lake-levels__lakes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.klo-lake-levels__lake {
    padding: 22px;
    border: 1px solid #D5DDE5;
    border-radius: 12px;
    background: #fff;
}

.klo-lake-levels__lake-name {
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.klo-lake-levels__readings {
    display: grid;
    gap: 12px;
    margin: 0;
}

.klo-lake-levels__reading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding-top: 12px;
    border-top: 1px solid #E8EDF1;
}

.klo-lake-levels__reading:first-child {
    padding-top: 0;
    border-top: 0;
}

.klo-lake-levels__reading dt,
.klo-lake-levels__reading dd {
    margin: 0;
}

.klo-lake-levels__reading dt {
    font-size: 0.95rem;
    line-height: 1.35;
}

.klo-lake-levels__reading dd {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.klo-lake-levels__temperature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid #D5DDE5;
    border-radius: 12px;
    background: #fff;
}

.klo-lake-levels__temperature-label {
    font-weight: 600;
}

.klo-lake-levels__temperature-value {
    font-size: 1.3rem;
    line-height: 1;
    white-space: nowrap;
}

.klo-lake-levels__timestamp {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.4;
    text-align: right;
}

.klo-lake-levels--rail {
    display: grid;
    gap: 10px;
}

.klo-lake-levels__rail-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
}

.klo-lake-levels__rail-label {
    font-size: 0.92rem;
    line-height: 1.3;
}

.klo-lake-levels__rail-value {
    font-size: 1rem;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .klo-lake-levels__lakes {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Current weather
   ========================================== */

.klo-current-weather,
.klo-current-weather * {
    box-sizing: border-box;
    font-family: "Inter Tight", sans-serif !important;
}

.klo-current-weather--full {
    padding: 20px 22px;
    border: 1px solid #D5DDE5;
    border-radius: 12px;
    background: #fff;
}

.klo-current-weather__inner {
    width: 100%;
    max-width: 660px;
}

.klo-current-weather__summary {
    display: flex;
    align-items: center;
    gap: 16px;
}

.klo-current-weather__temperature {
    font-size: clamp(2.7rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 0.95;
    white-space: nowrap;
}

.klo-current-weather__summary-copy {
    min-width: 0;
}

.klo-current-weather__condition {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.klo-current-weather__station {
    margin: 4px 0 0;
    font-size: 0.88rem;
    line-height: 1.35;
}

.klo-current-weather__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 10px;
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid #E8EDF1;
}

.klo-current-weather__detail {
    display: grid;
    grid-template-columns: minmax(90px, auto) 1fr;
    align-items: baseline;
    gap: 12px;
}

.klo-current-weather__detail dt,
.klo-current-weather__detail dd {
    margin: 0;
}

.klo-current-weather__detail dt {
    font-size: 0.93rem;
    line-height: 1.35;
}

.klo-current-weather__detail dd {
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    white-space: nowrap;
}

.klo-current-weather__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 12px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #E8EDF1;
    font-size: 0.8rem;
    line-height: 1.4;
}

.klo-current-weather--rail {
    display: grid;
    gap: 10px;
}

.klo-current-weather__rail-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E8EDF1;
}

.klo-current-weather__rail-temperature {
    font-size: 2rem;
    line-height: 1;
    white-space: nowrap;
}

.klo-current-weather__rail-condition {
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.25;
}

.klo-current-weather__rail-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.92rem;
    line-height: 1.3;
}

.klo-current-weather__rail-row strong {
    font-size: 0.95rem;
    text-align: right;
}

@media (max-width: 620px) {
    .klo-current-weather__details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .klo-current-weather--full {
        padding: 18px;
    }

    .klo-current-weather__summary {
        align-items: flex-start;
        gap: 12px;
    }

    .klo-current-weather__detail {
        grid-template-columns: minmax(86px, auto) 1fr;
    }
}
