* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #f5f8fc;
}

body.siteBody {
    margin: 0;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #1d2836;
    background: var(--themePageBg, #f5f8fc);
    font-size: 17px;
    line-height: 1.5;
}

a {
    color: inherit;
}

.siteHeader {
    width: 100%;
    background: #10284a;
}

.headerBannerLink {
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.headerBanner {
    position: relative;
    max-width: var(--pageMaxWidth);
    min-height: 230px;
    margin: 0 auto;
    overflow: hidden;
    background: #10284a;
}

.headerBannerImage {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.headerTitleArea {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px 22px;
    background: linear-gradient(
        to bottom,
        rgba(16, 40, 74, 0.35) 0%,
        rgba(16, 40, 74, 0.92) 100%
    );
    color: #ffffff;
}

.headerBrand {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.headerTitleArea h1 {
    margin: 3px 0 0;
    font-size: 30px;
    line-height: 1.1;
}

.headerTitleArea p {
    margin: 6px 0 0;
    font-size: 17px;
}

.headerAlertTile {
    display: block;
    max-width: var(--pageMaxWidth);
    margin: 0 auto;
    padding: 14px 18px;
    border: var(--tileBorderWidth) solid var(--tileHue100);
    border-radius: 0 0 var(--tileBorderRadius) var(--tileBorderRadius);
    background: linear-gradient(
        to bottom,
        var(--tileHue90) 0%,
        var(--tileHue15) 100%
    );
    text-decoration: none;
    color: var(--tileText);
}

.headerAlertTile strong {
    display: block;
    font-size: 18px;
}

.headerAlertTile span {
    display: block;
    margin-top: 3px;
}

.pageMain {
    max-width: var(--pageMaxWidth);
    margin: 0 auto;
    padding: 22px 16px 30px;
}

.pageTile,
.serviceTile {
    border: var(--tileBorderWidth) solid var(--tileHue100);
    border-radius: var(--tileBorderRadius);
    background: linear-gradient(
        to bottom,
        var(--tileHue90) 0%,
        var(--tileHue10) 100%
    );
    color: var(--tileText);
    box-shadow: 0 8px 22px rgba(16, 40, 74, 0.10);
}

.pageTile {
    padding: var(--tilePadding);
    margin-bottom: var(--tileGap);
}

.pageTile h2,
.serviceTile h2 {
    margin: 0 0 10px;
    line-height: 1.18;
}

.pageTile p,
.serviceTile p {
    margin: 0 0 12px;
}

.pageTile p:last-child,
.serviceTile p:last-child {
    margin-bottom: 0;
}

.homeTileGrid {
    display: grid;
    gap: var(--tileGap);
}

.serviceTile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px;
    padding: var(--tilePadding);
    text-decoration: none;
}

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

.serviceTileIcon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.serviceTileIconFallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
}

.serviceTileAction {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 8px;
    padding: 8px 12px;
    border: 1px solid var(--tileHue100);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.serviceIntroTile,
.descriptionTile,
.pricingTile,
.policiesTile {
    background: linear-gradient(
        to bottom,
        var(--tileHue90) 0%,
        var(--tileHue10) 100%
    );
}

.pricingTile {
    overflow: hidden;
}

.pricingScroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 10px 0;
    padding-bottom: 4px;
}

.pricingGrid {
    width: 100%;
    min-width: var(--pricingMinWidth);
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.70);
    border-radius: 12px;
    overflow: hidden;
}

.pricingGrid th,
.pricingGrid td {
    padding: 11px 12px;
    border-bottom: 1px solid rgba(16, 40, 74, 0.18);
    text-align: left;
    vertical-align: top;
}

.pricingGrid th {
    background: rgba(16, 40, 74, 0.10);
    font-weight: 700;
}

.pricingGrid tr:last-child td {
    border-bottom: 0;
}

.pricingNoteBox,
.priceCard {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid rgba(16, 40, 74, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.62);
}

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

.pricingFinePrint {
    margin-top: 12px;
    font-size: 15px;
}

.policyAccordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policyItem {
    border: 1px solid rgba(16, 40, 74, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.62);
    overflow: hidden;
}

.policyItem summary {
    cursor: pointer;
    padding: 13px 14px;
    font-weight: 700;
    list-style-position: inside;
}

.policyBody {
    padding: 0 14px 14px;
}

.policyBody p {
    margin-top: 0;
}

.siteFooter {
    padding: 22px 16px 28px;
    background: #10284a;
    color: #ffffff;
}

.footerPillRow {
    display: grid;
    gap: 12px;
    max-width: var(--pageMaxWidth);
    margin: 0 auto 18px;
}

.footerPill {
    display: block;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
}

.footerPill strong,
.footerPill span {
    display: block;
}

.footerPill span {
    font-size: 14px;
    opacity: 0.92;
}

.footerSocialRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: var(--pageMaxWidth);
    margin: 0 auto;
}

.footerSocialIcon {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 700;
}

.footerSocialIcon img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.headerBannerFallback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    height: 230px;
    min-height: 230px;
    padding: 28px;
    background:
        radial-gradient(circle at 25% 25%, rgba(155, 210, 60, 0.28), transparent 34%),
        linear-gradient(135deg, #10284a 0%, #183963 55%, #10284a 100%);
    color: #ffffff;
}

.headerFallbackLogo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.03em;
    background: rgba(255, 255, 255, 0.10);
}

.headerFallbackText {
    display: flex;
    flex-direction: column;
}

.headerFallbackText strong {
    font-size: 30px;
    line-height: 1.1;
}

.headerFallbackText span {
    margin-top: 5px;
    font-size: 17px;
    opacity: 0.92;
}

/* 2026-06-14 mobile polish patch */
.headerBannerFallback {
    display: block;
    width: 100%;
    height: 190px;
    min-height: 190px;
    background:
        radial-gradient(circle at 20% 20%, rgba(155, 210, 60, 0.22), transparent 30%),
        linear-gradient(135deg, #10284a 0%, #173a65 55%, #10284a 100%);
}

.headerBrand {
    display: none;
}

.headerTitleArea {
    padding: 18px 18px 20px;
    background: linear-gradient(
        to bottom,
        rgba(16, 40, 74, 0.08) 0%,
        rgba(16, 40, 74, 0.92) 100%
    );
}

.headerTitleArea h1 {
    margin: 0;
    font-size: 34px;
}

.headerTitleArea p {
    margin: 6px 0 0;
    font-size: 19px;
}

.footerPillRow {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.footerPill {
    padding: 11px 8px;
    border-radius: 999px;
}

.footerPill span {
    display: none;
}

.footerPill strong {
    font-size: 17px;
}

/* 2026-06-14 footer color correction */
.siteFooter {
    background: #10284a;
    color: #ffffff;
}

.footerPill {
    color: #ffffff;
    border-color: #294a75;
    background: rgba(16, 40, 74, 0.55);
}

.footerPill:visited,
.footerPill:hover,
.footerPill:active {
    color: #ffffff;
}

.footerPill strong {
    color: #ffffff;
}

.footerSocialIcon {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.06);
}

.footerSocialIcon:visited,
.footerSocialIcon:hover,
.footerSocialIcon:active {
    color: rgba(255, 255, 255, 0.92);
}

.footerSocialIcon img {
    filter: brightness(0) invert(1);
    opacity: 0.82;
}

.footerSocialIcon span {
    color: rgba(255, 255, 255, 0.88);
}

/* 2026-06-14 footer color correction */
.siteFooter {
    background: #10284a;
    color: #ffffff;
}

.footerPill {
    color: #ffffff;
    border-color: #294a75;
    background: rgba(16, 40, 74, 0.55);
}

.footerPill:visited,
.footerPill:hover,
.footerPill:active {
    color: #ffffff;
}

.footerPill strong {
    color: #ffffff;
}

.footerSocialIcon {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.06);
}

.footerSocialIcon:visited,
.footerSocialIcon:hover,
.footerSocialIcon:active {
    color: rgba(255, 255, 255, 0.92);
}

.footerSocialIcon img {
    filter: brightness(0) invert(1);
    opacity: 0.82;
}

.footerSocialIcon span {
    color: rgba(255, 255, 255, 0.88);
}

/* 2026-06-14 policy accordion list correction */
.policyAccordion {
    display: block;
    gap: 0;
    border: 1px solid rgba(16, 40, 74, 0.20);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.34);
}

.policyItem {
    margin: 0;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(16, 40, 74, 0.18);
    background: transparent;
    box-shadow: none;
}

.policyItem:last-child {
    border-bottom: 0;
}

.policyItem summary {
    padding: 13px 14px;
    border-radius: 0;
    background: transparent;
}

.policyItem[open] summary {
    border-bottom: 1px solid rgba(16, 40, 74, 0.14);
    background: rgba(255, 255, 255, 0.18);
}

.policyBody {
    padding: 12px 14px 16px;
    background: rgba(255, 255, 255, 0.20);
}

.policyBody p:last-child {
    margin-bottom: 0;
}

/* 2026-06-14 chat page cleanup */
.chatActionRow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.chatActionPill {
    display: block;
    padding: 12px 14px;
    border: 1px solid var(--tileHue100);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--tileText);
    text-align: center;
    text-decoration: none;
    font-weight: 800;
}

.chatActionPill:visited,
.chatActionPill:hover,
.chatActionPill:active {
    color: var(--tileText);
    text-decoration: none;
}

/* 2026-06-14 solid tile color system - no content tile gradients */
body.siteBody {
    background: var(--themePageBg, #f5f8fc);
}

.pageTile,
.serviceTile,
.serviceIntroTile,
.descriptionTile,
.pricingTile,
.policiesTile {
    border-color: var(--tileBorder, var(--tileHue100));
    background: var(--tileBg, var(--tileHue10));
    color: var(--tileText, #1d2836);
}

.pageTile h2,
.serviceTile h2,
.policyItem summary,
.priceCard strong,
.pricingNoteBox strong {
    color: var(--tileTextStrong, var(--tileText, #1d2836));
}

.serviceTileAction,
.priceCard,
.pricingNoteBox,
.policyAccordion {
    border-color: color-mix(in srgb, var(--tileBorder, #10284a) 35%, transparent);
    background: var(--tileInnerBg, rgba(255, 255, 255, 0.45));
    color: var(--tileText, #1d2836);
}

.policyItem {
    border-bottom-color: color-mix(in srgb, var(--tileBorder, #10284a) 22%, transparent);
}

.policyItem[open] summary {
    border-bottom-color: color-mix(in srgb, var(--tileBorder, #10284a) 18%, transparent);
    background: var(--tileInnerBg, rgba(255, 255, 255, 0.45));
}

.policyBody {
    background: var(--tileInnerBgOpen, rgba(255, 255, 255, 0.35));
    color: var(--tileText, #1d2836);
}

.pricingGrid {
    background: var(--tileInnerBg, rgba(255, 255, 255, 0.45));
}

.pricingGrid th {
    background: var(--tileInnerBgOpen, rgba(255, 255, 255, 0.35));
}

.serviceTileAction:visited,
.serviceTileAction:hover,
.serviceTileAction:active {
    color: var(--tileText, #1d2836);
}

/* 2026-06-14 footer social icons plain white no circles */
.footerSocialRow {
    gap: 22px;
    align-items: center;
}

.footerSocialIcon {
    min-width: 0;
    min-height: 0;
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #ffffff;
}

.footerSocialIcon:visited,
.footerSocialIcon:hover,
.footerSocialIcon:active {
    color: #ffffff;
    background: transparent;
}

.footerSocialIcon img {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.footerSocialIcon span {
    color: #ffffff;
}

/* 2026-06-14 contact hub and single footer contact pill */
.footerPillRowSingle {
    display: flex;
    justify-content: center;
}

.footerContactPill {
    width: min(360px, 100%);
}

.contactTileIcon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    line-height: 1;
}

.contactOptionTile {
    min-height: 235px;
}

/* 2026-06-14 action pill link cleanup */
a.serviceTileAction,
a.serviceTileAction:visited,
a.serviceTileAction:hover,
a.serviceTileAction:active {
    text-decoration: none;
    color: var(--tileText, #1d2836);
}

/* 2026-06-14 contact form styling */
.yardDogsContactForm {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.formTwoColumn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.formField {
    display: grid;
    gap: 6px;
}

.formField span,
.animalCountField legend {
    font-weight: 800;
    color: var(--tileTextStrong, var(--tileText));
}

.formField b,
.animalCountField b {
    color: var(--tileTextStrong, var(--tileText));
}

.formField input,
.formField select,
.formField textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid color-mix(in srgb, var(--tileBorder, #10284a) 45%, transparent);
    border-radius: 12px;
    background: var(--tileInnerBg, rgba(255, 255, 255, 0.50));
    color: var(--tileText, #1d2836);
    font: inherit;
}

.formField textarea {
    resize: vertical;
}

.formField small {
    color: var(--tileText, #1d2836);
    opacity: 0.82;
}

.animalCountField {
    margin: 0;
    padding: 0;
    border: 0;
}

.animalCountOptions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 7px;
}

.animalCountOptions label {
    display: inline-flex;
}

.animalCountOptions input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.animalCountOptions span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 8px 12px;
    border: 1px solid var(--tileBorder, #10284a);
    border-radius: 999px;
    background: var(--tileInnerBg, rgba(255, 255, 255, 0.50));
    color: var(--tileText, #1d2836);
    font-weight: 800;
}

.animalCountOptions input:checked + span {
    background: var(--tileBorder, #10284a);
    color: #ffffff;
}

.formSubmitButton {
    justify-self: start;
    cursor: pointer;
    font: inherit;
}

.formErrorBox,
.formSuccessBox {
    display: grid;
    gap: 6px;
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--tileBorder, #10284a);
    background: var(--tileInnerBg, rgba(255, 255, 255, 0.50));
}

.formErrorBox ul {
    margin: 4px 0 0;
    padding-left: 20px;
}

.websiteField {
    display: none;
}

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

    .animalCountOptions span {
        min-width: 42px;
        min-height: 42px;
    }
}

/* 2026-06-14 contact form submission review */
.submissionReview {
    margin-top: 16px;
    padding: 14px;
    border: 1px solid color-mix(in srgb, var(--tileBorder, #10284a) 45%, transparent);
    border-radius: 12px;
    background: var(--tileInnerBg, rgba(255, 255, 255, 0.50));
}

.submissionReview h3 {
    margin: 0 0 12px;
    color: var(--tileTextStrong, var(--tileText));
}

.submissionReview dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.submissionReview dt {
    font-weight: 800;
    color: var(--tileTextStrong, var(--tileText));
}

.submissionReview dd {
    margin: 0;
}

.submissionReview ul {
    margin: 0;
    padding-left: 20px;
}

/* 2026-06-14 contact form review stacked label/value format */
.submissionReview dl {
    display: block;
    margin: 0;
}

.submissionReview dt {
    display: block;
    margin: 0 0 2px;
    font-weight: 800;
    color: var(--tileTextStrong, var(--tileText));
}

.submissionReview dt::after {
    content: "";
}

.submissionReview dd {
    display: block;
    margin: 0 0 16px;
}

.submissionReview dd::after {
    content: none;
    display: none;
    margin: 0;
}

.submissionReview dd ul {
    margin: 4px 0 0;
    padding-left: 22px;
}

.submissionReview dd li {
    margin-bottom: 3px;
}

/* Admin Tools public pill - visible only for trusted admin source IPs */
.adminToolsPublicPillWrap {
    width: min(94vw, 760px);
    margin: 18px auto 20px;
    display: flex;
    justify-content: center;
}

.adminToolsPublicPill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #0b1f3a;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, .18);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .16);
}

.adminToolsPublicPill:hover {
    filter: brightness(1.08);
}

/* Admin Tools trusted-source pill */
body .adminToolsPublicPillWrap {
    width: min(94vw, 760px);
    margin: 18px auto 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

body .adminToolsPublicPillWrap a.adminToolsPublicPill,
body a.adminToolsPublicPill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #0b1f3a;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, .18);
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .16);
}

body .adminToolsPublicPillWrap a.adminToolsPublicPill:hover,
body a.adminToolsPublicPill:hover {
    filter: brightness(1.08);
}

/* Admin Tools trusted-source pill */
body .adminToolsPublicPillWrap {
    width: min(94vw, 760px);
    margin: 18px auto 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

body .adminToolsPublicPillWrap a.adminToolsPublicPill,
body a.adminToolsPublicPill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #0b1f3a;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, .18);
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .16);
}

body .adminToolsPublicPillWrap a.adminToolsPublicPill:hover,
body a.adminToolsPublicPill:hover {
    filter: brightness(1.08);
}

/* Admin Tools pill inside footer */
.footerAdminToolsWrap {
    width: min(94vw, 760px);
    margin: 0 auto 14px;
    display: flex;
    justify-content: center;
}

.footerAdminToolsPill,
.footerAdminToolsPill:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #050505;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, .28);
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

.footerAdminToolsPill:hover {
    filter: brightness(1.12);
}

/* Trusted admin pill inside footer, directly above Contact Us */
.footerAdminToolsRow {
    margin-bottom: 12px;
}

.footerAdminToolsPill,
.footerAdminToolsPill:visited {
    background: #050505 !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, .28) !important;
    text-decoration: none !important;
}

.footerAdminToolsPill strong {
    color: #ffffff !important;
}

/* Make Admin Tools footer pill match Contact Us exactly */
.footerAdminToolsRow {
    margin-bottom: 12px;
}

.footerAdminToolsPill,
.footerAdminToolsPill:visited,
.footerAdminToolsPill strong {
    background: inherit !important;
    color: inherit !important;
    text-decoration: inherit !important;
    box-shadow: inherit !important;
}

/* Admin Tools uses the exact same footer pill style as Contact Us */
.footerAdminToolsRow {
    margin-bottom: 12px;
}

/* Yard Dogs GI live alert tile */
.yardDogsAlertTileWrap {
    width: min(1120px, calc(100% - 24px));
    margin: 14px auto 0 auto;
}

.yardDogsAlertTileWrap:empty {
    display: none;
}

.ydAlertTile {
    background: #fff0f0;
    border: 2px solid #b42318;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(70, 10, 10, 0.14);
    color: #4b0c08;
    padding: 16px;
}

.ydAlertTileHeader {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.ydAlertEyebrow {
    color: #b42318;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.ydAlertTitle {
    color: #4b0c08;
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 3px 0 0 0;
}

.ydAlertLineList {
    display: grid;
    gap: 7px;
    margin-top: 8px;
}

.ydAlertLine {
    background: rgba(180, 35, 24, 0.08);
    border: 1px solid rgba(180, 35, 24, 0.24);
    border-radius: 12px;
    color: #4b0c08;
    display: block;
    font-weight: 750;
    line-height: 1.25;
    padding: 9px 11px;
    text-decoration: none;
}

.ydAlertLine:hover,
.ydAlertLine:focus {
    background: rgba(180, 35, 24, 0.14);
    outline: none;
    text-decoration: none;
}

.ydAlertActionRow {
    display: flex;
    justify-content: flex-start;
    margin-top: 12px;
}

.ydAlertButton {
    background: #b42318;
    border: 2px solid #b42318;
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 850;
    line-height: 1;
    padding: 10px 14px;
    text-decoration: none;
}

.ydAlertButton:hover,
.ydAlertButton:focus {
    background: #7f1d1d;
    border-color: #7f1d1d;
    color: #ffffff;
    outline: none;
    text-decoration: none;
}

@media (max-width: 600px) {
    .yardDogsAlertTileWrap {
        width: min(100% - 18px, 1120px);
        margin-top: 10px;
    }

    .ydAlertTile {
        border-radius: 15px;
        padding: 13px;
    }

    .ydAlertTitle {
        font-size: 1.12rem;
    }

    .ydAlertLine {
        font-size: 0.95rem;
    }
}

/* Yard Dogs GI header alert tile uses normal serviceTile + themeRed */
/* Yard Dogs GI alert page helpers using normal tile theme system */
/* Yard Dogs GI alerts: pageTile controls spacing; ui.cfg controls tile variables */
.alertTileInner {
    border-radius: inherit;
    color: inherit;
    display: block;
    margin: calc(-1 * var(--tilePadding));
    padding: var(--tilePadding);
    text-decoration: none;
}

.alertTileInner:focus-visible {
    outline: var(--tileBorderWidth) solid currentColor;
    outline-offset: calc(-1 * var(--tileBorderWidth));
}

.alertTileInner .serviceTileAction {
    text-decoration: none;
}

.alertDetailText {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.alertMetaLine {
    font-weight: 750;
}

/* Yard Dogs GI dynamic header alert tile; spacing follows ui.cfg */
#yardDogsAlertTile:empty {
    display: none;
}

#yardDogsAlertTile .headerAlertArea {
    padding-top: var(--tileGap);
    padding-bottom: 0;
}

#yardDogsAlertTile .headerAlertTile {
    margin-bottom: var(--tileGap);
}

#yardDogsAlertTile .serviceTile.headerAlertTileThreeLine {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: calc(var(--tileGap) / 5);
    justify-content: center;
    min-height: auto;
    padding-bottom: calc(var(--tilePadding) * 0.55);
    padding-top: calc(var(--tilePadding) * 0.55);
    text-align: center;
}

#yardDogsAlertTile .headerAlertTitleLine,
#yardDogsAlertTile .headerAlertCountLine,
#yardDogsAlertTile .headerAlertDetailLine {
    margin: 0;
    text-align: center;
    width: 100%;
}

#yardDogsAlertTile .headerAlertTitleLine {
    font-size: 1em;
    font-weight: 725;
    line-height: 1.1;
}

#yardDogsAlertTile .headerAlertCountLine {
    font-size: 0.98em;
    font-weight: 700;
    line-height: 1.1;
}

#yardDogsAlertTile .headerAlertDetailLine {
    font-size: 0.98em;
    font-weight: 700;
    line-height: 1.1;
}





/* Yard Dogs GI alert accordion v3 */
.yd3AlertPageTile {
    background: rgba(255, 255, 255, 0.54) !important;
}

.yd3Panel {
    background: rgba(255, 255, 255, 0.46);
    border: var(--tileBorderWidth) solid rgba(0, 0, 0, 0.18);
    border-radius: var(--tileBorderRadius);
    margin-top: var(--tileGap);
    overflow: hidden;
    width: 100%;
}

.yd3Panel,
.yd3Panel * {
    box-sizing: border-box;
}

.yd3Row,
.yd3ChildPanel,
.yd3EventBody {
    margin: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    width: 100% !important;
}

.yd3Row {
    display: block;
}

.yd3Panel summary {
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
    cursor: pointer;
    display: list-item !important;
    line-height: 1.25;
    margin: 0 !important;
    padding: calc(var(--tilePadding) * 0.76) calc(var(--tilePadding) * 0.9) !important;
    text-align: left !important;
    width: 100% !important;
}

.yd3Panel summary::marker {
    color: currentColor;
    font-size: 1.18em;
}

.yd3Panel summary span {
    text-align: left !important;
}

.yd3Group > .yd3GroupSummary {
    background: rgba(155, 35, 47, 0.18);
    color: rgb(105, 28, 36);
    font-weight: 400;
}

.yd3State > .yd3StateSummary {
    background: rgba(155, 35, 47, 0.10);
    color: rgb(112, 34, 43);
    font-weight: 400;
}

.yd3GroupSummary strong,
.yd3StateSummary strong {
    font-size: 1.08em;
    font-weight: 850;
    margin-left: 0.28em;
}

.yd3ChildPanel {
    background: rgba(255, 255, 255, 0.20);
}

.yd3Empty {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    margin: 0;
    padding: calc(var(--tilePadding) * 0.82) calc(var(--tilePadding) * 0.9);
}

.yd3Event > .yd3EventSummary {
    background: var(--yd3RowBg) !important;
    color: var(--yd3Text) !important;
    min-height: auto;
}

.yd3EventText {
    display: inline-block;
    max-width: calc(100% - 1em);
    vertical-align: top;
}

.yd3EventTitle,
.yd3EventMeta {
    color: var(--yd3Text) !important;
    display: block;
    text-align: left !important;
}

.yd3EventTitle {
    font-size: 1em;
    font-weight: 650;
    margin-bottom: calc(var(--tileGap) * 0.22);
}

.yd3EventMeta {
    font-size: 0.94em;
    font-weight: 400;
    line-height: 1.28;
}

.yd3EventBody {
    background: var(--yd3BodyBg) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--yd3Text) !important;
    padding: calc(var(--tilePadding) * 0.95) calc(var(--tilePadding) * 0.95) !important;
}

.yd3DetailBlock {
    margin: 0 0 calc(var(--tileGap) * 1.35) 0;
    padding: 0;
}

.yd3DetailBlock:last-child {
    margin-bottom: 0;
}

.yd3DetailLabel {
    color: var(--yd3LabelText) !important;
    font-weight: 850;
    line-height: 1.22;
    margin: 0;
    padding: 0;
}

.yd3DetailText {
    color: var(--yd3Text) !important;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.yd3SeverityExtreme {
    --yd3RowBg: rgba(160, 38, 48, 0.14);
    --yd3BodyBg: rgba(160, 38, 48, 0.055);
    --yd3Text: rgb(128, 30, 38);
    --yd3LabelText: rgb(88, 18, 26);
}

.yd3SeverityHigh {
    --yd3RowBg: rgba(32, 92, 165, 0.14);
    --yd3BodyBg: rgba(32, 92, 165, 0.055);
    --yd3Text: rgb(25, 76, 142);
    --yd3LabelText: rgb(16, 52, 104);
}

.yd3SeverityModerate {
    --yd3RowBg: rgba(38, 125, 72, 0.12);
    --yd3BodyBg: rgba(38, 125, 72, 0.05);
    --yd3Text: rgb(28, 101, 58);
    --yd3LabelText: rgb(17, 70, 39);
}

.yd3SeverityInfo {
    --yd3RowBg: rgba(38, 125, 72, 0.08);
    --yd3BodyBg: rgba(38, 125, 72, 0.04);
    --yd3Text: rgb(34, 102, 60);
    --yd3LabelText: rgb(22, 76, 42);
}
/* End Yard Dogs GI alert accordion v3 */

/* Header alert tile live update line */
#yardDogsAlertTile,
#yardDogsAlertTile .headerAlertTileBox {
    text-align: center;
}

#yardDogsAlertTile .headerAlertTitleLine,
#yardDogsAlertTile .headerAlertUpdateLabel {
    font-weight: 750;
}

#yardDogsAlertTile .headerAlertCountLine,
#yardDogsAlertTile .headerAlertDetailLine,
#yardDogsAlertTile .headerAlertUpdateLine,
#yardDogsAlertTile .headerAlertLastUpdateValue,
#yardDogsAlertTile .headerAlertNextUpdateValue {
    font-weight: 400;
}

#yardDogsAlertTile .headerAlertSpacer {
    height: 0.45rem;
}

#yardDogsAlertTile .headerAlertUpdateLine {
    font-size: 0.86em;
}

/* Header alert tile final layout cleanup */
#yardDogsAlertTile {
    text-align: center !important;
}

#yardDogsAlertTile .headerAlertTileBox {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    text-decoration: none !important;
}

#yardDogsAlertTile .headerAlertTileBox,
#yardDogsAlertTile .headerAlertTileBox * {
    text-decoration: none !important;
}

#yardDogsAlertTile .headerAlertTitleLine {
    display: block !important;
    text-align: center !important;
    font-weight: 750 !important;
}

#yardDogsAlertTile .headerAlertCountLine,
#yardDogsAlertTile .headerAlertDetailLine {
    display: block !important;
    text-align: center !important;
    font-weight: 400 !important;
}

#yardDogsAlertTile .headerAlertUpdateLine {
    display: block !important;
    text-align: center !important;
    font-size: 0.86em !important;
    font-weight: 400 !important;
    white-space: nowrap !important;
}

#yardDogsAlertTile .headerAlertUpdateLabel {
    font-weight: 750 !important;
}

#yardDogsAlertTile .headerAlertLastUpdateValue,
#yardDogsAlertTile .headerAlertNextUpdateValue {
    font-weight: 400 !important;
}

#yardDogsAlertTile .headerAlertSpacer {
    display: block !important;
    height: 0.55rem !important;
}

/* Header alert tile red/pink warning box restore */
#yardDogsAlertTile {
    text-align: center !important;
}

#yardDogsAlertTile .headerAlertTileBox {
    display: block !important;
    box-sizing: border-box !important;
    width: calc(100% - 2rem) !important;
    max-width: 680px !important;
    margin: 0.75rem auto 1rem auto !important;
    padding: 0.8rem 1rem !important;
    text-align: center !important;

    background: #ffe1e7 !important;
    border: 2px solid #b00020 !important;
    border-radius: 14px !important;
    color: #5a0008 !important;

    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(90, 0, 8, 0.12) !important;
}

#yardDogsAlertTile .headerAlertTileBox:link,
#yardDogsAlertTile .headerAlertTileBox:visited,
#yardDogsAlertTile .headerAlertTileBox:hover,
#yardDogsAlertTile .headerAlertTileBox:active {
    color: #5a0008 !important;
    text-decoration: none !important;
}

#yardDogsAlertTile .headerAlertTileBox * {
    color: #5a0008 !important;
    text-decoration: none !important;
}

#yardDogsAlertTile .headerAlertTitleLine {
    display: block !important;
    text-align: center !important;
    font-weight: 750 !important;
    line-height: 1.15 !important;
}

#yardDogsAlertTile .headerAlertCountLine,
#yardDogsAlertTile .headerAlertDetailLine {
    display: block !important;
    text-align: center !important;
    font-weight: 400 !important;
    line-height: 1.15 !important;
}

#yardDogsAlertTile .headerAlertUpdateLine {
    display: block !important;
    text-align: center !important;
    font-size: 0.86em !important;
    font-weight: 400 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
}

#yardDogsAlertTile .headerAlertUpdateLabel {
    font-weight: 750 !important;
}

#yardDogsAlertTile .headerAlertLastUpdateValue,
#yardDogsAlertTile .headerAlertNextUpdateValue {
    font-weight: 400 !important;
}

#yardDogsAlertTile .headerAlertSpacer {
    display: block !important;
    height: 0.55rem !important;
}

/* yardDogsHeaderPillNav */

.headerBanner {
    position: relative;
}

/* BEGIN yardDogsHeaderPillColorTokens */
.siteHeader {
    --ydHeaderPillBorderColor: #7fb0d4;
    --ydHeaderPillBackground: #c2dff2;
    --ydHeaderPillTextColor: #173e66;
    --ydHeaderPillHoverBackground: #afd4ee;
    --ydHeaderPillFocusOutline: #e8f3fb;

    --ydHeaderAlertPillActiveBorderColor: #cc5165;
    --ydHeaderAlertPillActiveBackground: #f4c6cf;
    --ydHeaderAlertPillActiveTextColor: #7d1020;
    --ydHeaderAlertPillActiveHoverBackground: #efadb9;
}
/* END yardDogsHeaderPillColorTokens */

.headerPillNav {
    position: absolute;
    left: 4.5%;
    right: 4.5%;
    bottom: 3.1%;
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    z-index: 5;
}

.headerNavPill {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    min-width: 82px;
    max-width: 250px;
    padding: 6px 15px;
    border: 1px solid var(--ydHeaderPillBorderColor, var(--ydBlue50, var(--ydIntranetBlue50, #7fb0d4)));
    border-radius: 999px;
    background: var(--ydHeaderPillBackground, var(--ydBlue30, var(--ydIntranetBlue30, #c2dff2)));
    color: var(--ydHeaderPillTextColor, var(--ydBlue80, var(--ydIntranetBlue80, #173e66))) !important;
    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 2px 8px rgba(11, 33, 63, 0.10);
}

.headerNavPill:hover {
    background: var(--ydHeaderPillHoverBackground, var(--ydBlue35, var(--ydIntranetBlue35, #afd4ee)));
}

.headerNavPill:focus,
.headerNavPill:focus-visible {
    outline: 3px solid var(--ydHeaderPillFocusOutline, var(--ydBlue15, var(--ydIntranetBlue15, #e8f3fb)));
    outline-offset: 3px;
}

.headerAlertPill {
    min-width: 245px;
    max-width: 345px;
    gap: 5px;
}

.headerAlertPill .headerAlertPillCode {
    font-weight: 400;
}

.headerAlertPill .headerAlertPillCount {
    font-weight: 950;
    font-variant-numeric: tabular-nums;
}

.headerAlertPill .headerAlertPillIcon {
    font-weight: 400;
}

.headerAlertPillActive {
    border-color: var(--ydHeaderAlertPillActiveBorderColor, var(--ydRed50, var(--ydIntranetRed50, #cc5165)));
    background: var(--ydHeaderAlertPillActiveBackground, var(--ydRed30, var(--ydIntranetRed30, #f4c6cf)));
    color: var(--ydHeaderAlertPillActiveTextColor, var(--ydRed80, var(--ydIntranetRed80, #7d1020))) !important;
}

.headerAlertPillActive:hover {
    background: var(--ydHeaderAlertPillActiveHoverBackground, var(--ydRed35, var(--ydIntranetRed35, #efadb9)));
}

@media (max-width: 560px) {
    .headerPillNav {
        left: 5.5%;
        right: 5.5%;
        bottom: 3.4%;
        gap: 6px;
    }

    .headerNavPill {
        min-height: 28px;
        min-width: 70px;
        max-width: 184px;
        padding: 5px 10px;
        font-size: 0.78rem;
    }

    .headerAlertPill {
        min-width: 205px;
        max-width: 230px;
        gap: 3px;
    }
}


/* yardDogsHeaderAccountMenu */

.headerAccountWrap {
    position: relative;
    pointer-events: auto;
}

.headerAccountButton {
    font-family: inherit;
}

.headerAccountMenu {
    position: absolute;
    right: 0;
    top: calc(100% + 7px);
    min-width: 148px;
    background: var(--ydIntranetBlue20, #d8eaf7);
    border: 1px solid var(--ydIntranetBlue85, #102c52);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(11, 33, 63, 0.24);
    padding: 6px;
    z-index: 20;
}

.headerAccountMenu[hidden] {
    display: none;
}

.headerAccountMenuLink {
    display: block;
    padding: 9px 10px;
    border-bottom: 1px solid var(--ydIntranetBlue25, #c6dff1);
    color: var(--ydIntranetBlue90, #0b213f) !important;
    font-weight: 850;
    text-decoration: none !important;
    line-height: 1.15;
}

.headerAccountMenuLink:last-child {
    border-bottom: 0;
}

.headerAccountMenuLink:hover,
.headerAccountMenuLink:focus {
    background: var(--ydIntranetBlue25, #c6dff1);
    outline: none;
    border-radius: 8px;
}

.headerAccountMenuLink:focus {
    outline: 3px solid var(--ydIntranetBlue60, #6fa8d4);
    outline-offset: 2px;
}

/* yardDogsHeaderAccountMenuVisibilityFix */

.siteHeader,
.headerBannerLink,
.headerBanner {
    overflow: visible;
}

.headerPillNav {
    z-index: 1000;
}

.headerAccountWrap {
    z-index: 1001;
}

.headerAccountMenu {
    z-index: 1002;
}

/* YD alert manager control slat START */
.yd3YardDogsControlSlat {
    --yd3RowBg: #dbeaf8;
    color: #14395d;
    background: var(--yd3RowBg);
}

.yd3YardDogsControlSlat > .yd3EventSummary {
    background: transparent !important;
    color: #14395d;
}

.yd3YardDogsControlSummary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.yd3YardDogsControlText {
    min-width: 0;
}

.yd3YardDogsControlAction {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.yd3AlertAddButton {
    white-space: nowrap;
}
/* YD alert manager control slat END */

/* YD alert page width alignment START */
.yd3AlertPageMain {
    max-width: min(100%, 920px);
}

.yd3AlertPageTile .yd3Panel {
    margin-left: calc(-1 * var(--tilePadding));
    margin-right: calc(-1 * var(--tilePadding));
    width: calc(100% + (var(--tilePadding) * 2));
}

@media (max-width: 767px) {
    .yd3AlertPageMain {
        padding-left: 0;
        padding-right: 0;
    }

    .yd3AlertPageTile {
        border-left-width: var(--tileBorderWidth);
        border-right-width: var(--tileBorderWidth);
    }

    .yd3AlertPageTile .yd3Panel {
        margin-left: -14px;
        margin-right: -14px;
        width: calc(100% + 28px);
    }
}
/* YD alert page width alignment END */

/* YD Yard Dogs alert module inset START */
.yd3YardDogsChildPanel {
    box-sizing: border-box;
}

.yd3YardDogsChildPanel > .yd3YardDogsControlSlat {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background: var(--yd3RowBg);
    border-left-width: 0;
    border-right-width: 0;
}

.yd3YardDogsChildPanel > .yd3YardDogsControlSlat > .yd3EventSummary {
    box-sizing: border-box;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
}

.yd3YardDogsChildPanel > .yd3Empty {
    box-sizing: border-box;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
/* YD Yard Dogs alert module inset END */

/* YD public Yard Dogs alert visual START */
.yd3YardDogsToneCritical {
    --yd3RowBg: var(--ydPublicYardDogsAlertCriticalRowBg, rgba(160, 38, 48, 0.14));
    --yd3BodyBg: var(--ydPublicYardDogsAlertCriticalBodyBg, rgba(160, 38, 48, 0.055));
    --yd3Text: var(--ydPublicYardDogsAlertCriticalText, rgb(128, 30, 38));
    --yd3LabelText: var(--ydPublicYardDogsAlertCriticalLabelText, rgb(88, 18, 26));
}

.yd3YardDogsToneImportant {
    --yd3RowBg: var(--ydPublicYardDogsAlertImportantRowBg, rgba(232, 160, 0, 0.14));
    --yd3BodyBg: var(--ydPublicYardDogsAlertImportantBodyBg, rgba(232, 160, 0, 0.055));
    --yd3Text: var(--ydPublicYardDogsAlertImportantText, rgb(133, 91, 0));
    --yd3LabelText: var(--ydPublicYardDogsAlertImportantLabelText, rgb(63, 42, 0));
}

.yd3YardDogsToneInfo {
    --yd3RowBg: var(--ydPublicYardDogsAlertInfoRowBg, rgba(38, 125, 72, 0.08));
    --yd3BodyBg: var(--ydPublicYardDogsAlertInfoBodyBg, rgba(38, 125, 72, 0.04));
    --yd3Text: var(--ydPublicYardDogsAlertInfoText, rgb(34, 102, 60));
    --yd3LabelText: var(--ydPublicYardDogsAlertInfoLabelText, rgb(22, 76, 42));
}

.yd3YardDogsToneSale {
    --yd3RowBg: var(--ydPublicYardDogsAlertSaleRowBg, rgba(32, 92, 165, 0.14));
    --yd3BodyBg: var(--ydPublicYardDogsAlertSaleBodyBg, rgba(32, 92, 165, 0.055));
    --yd3Text: var(--ydPublicYardDogsAlertSaleText, rgb(25, 76, 142));
    --yd3LabelText: var(--ydPublicYardDogsAlertSaleLabelText, rgb(16, 52, 104));
}

.yd3YardDogsEvent .yd3EventTitle,
.yd3YardDogsEvent .yd3BlockTitle,
.yd3YardDogsEvent .yd3BlockLabel,
.yd3YardDogsEvent .yd3EventBody strong {
    color: var(--yd3LabelText);
}

.yd3YardDogsEvent .yd3EventMeta,
.yd3YardDogsEvent .yd3EventBody,
.yd3YardDogsEvent .yd3Block,
.yd3YardDogsEvent .yd3BlockText,
.yd3YardDogsEvent .yd3BlockValue,
.yd3YardDogsEvent p,
.yd3YardDogsEvent li {
    color: var(--yd3Text);
}
/* YD public Yard Dogs alert visual END */

/* YD public Yard Dogs marker alignment START */
.yd3YardDogsEvent > .yd3YardDogsEventSummary > .yd3EventText {
    max-width: calc(100% - var(--ydPublicYardDogsAlertSummaryTextMarkerReserve, 2.05rem));
}
/* YD public Yard Dogs marker alignment END */
