/* SHIR Capital - Static Site CSS */
/* Matching WordPress theme: silver header, white body, dark text */

:root {
    --navy: #1d2d47;
    --teal: #396884;
    --dark-text: #333333;
    --light-text: #ffffff;
    --muted-text: #666666;
    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
    --border-color: #dddddd;
    --font-main: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--dark-text);
    line-height: 1.7;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--teal);
}

/* Header Band - Silver Gradient */
.site-header {
    background: linear-gradient(to bottom, #e8e8e8, #c0c0c0);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-header .logo img {
    height: 80px;
}

.site-header .site-tagline {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

/* Navigation Bar */
.nav-bar {
    background-color: var(--bg-white);
    border-bottom: 3px solid var(--navy);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu li a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark-text);
    font-size: 0.9rem;
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: var(--navy);
    color: var(--light-text);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem;
}

/* Page Title Section */
.page-title-section {
    padding: 2rem 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--navy);
}

/* Hero Section - Full width image for homepage */
.hero {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.hero-content .logo img {
    height: 100px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--light-text);
    letter-spacing: 1px;
}

.hero .scroll-arrow {
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 1;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}


/* Hero Banner - Subpages (shorter) */
.hero-banner {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-banner-logo {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-banner-logo img {
    height: 100px;
}

.hero-banner-tagline {
    position: absolute;
    bottom: 1.5rem;
    left: 260px;
    right: auto;
    text-align: left;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    z-index: 1;
    margin: 0;
    line-height: 100px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Stats Counter Section */
.stats-section {
    padding: 3rem 2rem;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-container.two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 660px;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark-text);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Content Section */
.section {
    padding: 3rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section.tight-top {
    padding-top: 0;
    margin-top: -1rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-title-center {
    text-align: center;
}

.section-intro {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 2rem;
    text-align: center;
}

.section-text {
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

/* Two Column Text Layout */
.two-col-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 3px solid var(--navy);
}

.two-col-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.two-col-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark-text);
}

/* Integration Section */
.integration-section {
    text-align: center;
    padding: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 2rem;
}

.integration-visual {
    position: relative;
    margin-bottom: 2rem;
}

.integration-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.integration-card {
    border: 2px solid var(--navy);
    border-radius: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.integration-card.ava {
    border-color: #e91e8c;
}

.integration-card.nexus {
    border-color: #2e7d32;
}

.integration-card .card-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.integration-card ul {
    list-style: none;
    text-align: center;
    font-size: 0.9rem;
    line-height: 2;
}

.integration-card .btn {
    margin-top: 1rem;
}

.integration-note {
    font-style: italic;
    color: var(--dark-text);
    max-width: 900px;
    margin: 2rem auto;
    line-height: 1.8;
    font-size: 0.95rem;
}

.integration-divider {
    border: none;
    border-top: 1px solid #ccc;
    max-width: 1000px;
    margin: 1.5rem auto 0;
}

/* Team Cards */
.team-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-text);
    margin: 3rem 0 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem 1rem;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--teal);
}

.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark-text);
}

.team-title-role {
    color: var(--teal);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--muted-text);
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: left;
}

/* Property Cards */
.property-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.property-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.property-card:last-child {
    border-bottom: none;
}

.property-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: 3px solid #1D2D47;
}

.property-info {
    padding: 0.5rem 0;
}

.property-name {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.property-name a {
    color: var(--dark-text);
    text-decoration: underline;
}

.property-details {
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 2;
}

.property-details span {
    display: block;
}

.property-details .label {
    display: inline;
    font-weight: normal;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background-color: var(--navy);
    color: var(--light-text);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.75rem;
}

.btn:hover {
    background-color: var(--teal);
    color: var(--light-text);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background-color: var(--navy);
    color: var(--light-text);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.comparison-table th {
    background-color: var(--navy);
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* Development Comparison - Hotel Page */
.dev-comparison {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.dev-comparison-banner {
    background-color: var(--navy);
    color: #fff;
    text-align: center;
    padding: 0.75rem 1rem;
    font-family: 'Engravers MT', 'Copperplate Gothic Bold', Copperplate, serif;
    font-weight: 800;
    font-size: 1.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dev-comparison-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem 1.5rem;
}

.dev-comparison-col {
    text-align: center;
    flex: 1;
}

.dev-comparison-col h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.dev-comparison-col img {
    height: 100px;
    width: auto;
}

.dev-comparison-col.center-col img {
    height: 80px;
}

.dev-comparison-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
}

.dev-comparison-row:last-child {
    border-bottom: none;
}

.dev-comparison-left,
.dev-comparison-right {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    padding: 0 0.5rem;
}

.dev-comparison-left {
    color: #3a4455;
    font-style: italic;
    font-weight: 700;
}

.dev-comparison-right {
    color: var(--navy);
    font-weight: 700;
}

.dev-comparison-label {
    flex: 0 0 200px;
    text-align: center;
}

.dev-comparison-label span {
    display: inline-block;
    background-color: var(--teal);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 3px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.dev-comparison-divider {
    border: none;
    border-top: 3px solid var(--navy);
    margin: 2rem 0 0;
}

@media (max-width: 768px) {
    .dev-comparison-icons {
        flex-direction: column;
        gap: 1.5rem;
    }
    .dev-comparison-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .dev-comparison-label {
        flex: none;
        order: -1;
    }
    .dev-comparison-left,
    .dev-comparison-right {
        font-size: 0.85rem;
    }
}

/* Affordable Crisis Section */
/* Affordable Housing Crisis Section */
.crisis-banner {
    background: var(--navy);
    color: #fff;
    text-align: center;
    font-family: 'Engravers MT', 'Copperplate Gothic Bold', Copperplate, serif;
    font-size: 2.03rem;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    margin: 2rem 0 1.25rem;
    letter-spacing: 0.01em;
}

.crisis-label {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

/* Accordion Problem Boxes */
.accordion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.accordion-box {
    border: 2px solid var(--navy);
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.accordion-box:hover {
    box-shadow: 0 2px 8px rgba(29,45,71,0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark-text);
    user-select: none;
}

.accordion-arrow {
    color: var(--navy);
    font-size: 0.85rem;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.accordion-box.open .accordion-arrow {
    transform: rotate(90deg);
}

.accordion-body {
    display: none;
    padding: 0 1rem 0.85rem 1rem;
    font-size: 0.99rem;
    color: #555;
    line-height: 1.5;
    border-top: 1px solid #e0e4ea;
}

.accordion-box.open .accordion-body {
    display: block;
}

/* Solution Banner */
.solution-banner {
    background: var(--teal);
    color: #fff;
    text-align: center;
    font-size: 1.93rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem 0 0.75rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.solution-box {
    background: var(--navy);
    color: #fff;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.85rem 0.5rem;
    line-height: 1.4;
}

/* News Section */
.news-list {
    max-width: 900px;
}

.news-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 0.8rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-title a {
    color: var(--dark-text);
}

.news-title a:hover {
    color: var(--teal);
}

.news-subtitle {
    font-style: italic;
    color: var(--muted-text);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.news-excerpt {
    color: var(--dark-text);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 900px;
}

.contact-logo img {
    height: 200px;
}

.contact-info {
    padding-top: 2rem;
}

.contact-info p {
    font-size: 1rem;
    line-height: 2;
    color: var(--dark-text);
}

.contact-info a {
    color: var(--teal);
    text-decoration: underline;
}

/* Section Divider */
.section-sold-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 3rem 0 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--navy);
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem;
    margin-top: 2rem;
}

.partner-logos img {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logos img:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted-text);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--navy);
}

.footer-copyright {
    color: var(--muted-text);
    font-size: 0.8rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .site-header .site-tagline {
        font-size: 1.4rem;
    }
    
    .nav-bar {
        padding: 0;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-banner {
        height: 200px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 2rem 1.5rem;
    }
    
    .two-col-text {
        grid-template-columns: 1fr;
    }
    
    .integration-cards {
        grid-template-columns: 1fr;
    }
    
    .property-card {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* News Article Pages */
.news-article {
    max-width: 820px;
}

.news-article-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0.5rem 0 1rem;
    line-height: 1.3;
}

.news-source {
    font-size: 0.85rem;
    color: var(--teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--teal);
    padding-left: 0.75rem;
}

.news-article-body p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.2rem;
}

.news-subtitle {
    font-size: 0.9rem;
    color: var(--muted-text);
    font-style: italic;
    margin-bottom: 0.4rem;
}



/* --- Before/After walkthrough video -----------------------------------
   Injected by js/main.js on the seven gallery pages listed in videos.json.
   Sits between the carousel and the "Back to..." button. */
.ba-video-wrap {
    max-width: 960px;
    margin: 2.5rem auto 0;
    padding: 0 1rem;
}

.ba-video-title {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1rem;
    text-align: center;
}

/* padding-top 56.25% is the 16:9 aspect ratio; the iframe fills the box.
   Done this way rather than aspect-ratio so older mobile Safari behaves. */
.ba-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: var(--navy);
    border: 3px solid var(--navy);
    overflow: hidden;
}

.ba-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ==========================================================================
   Investor Portal  (ported from the live WordPress build, 2026-08-20)
   The WordPress CSS for this exists only to wrestle Cornerstone's markup, so
   what is reproduced here is the end state, not those selectors.
   ========================================================================== */

/* Home: nav + portal bar stick as one block. Wrapping them means the bar needs
   no hard-coded top offset -- .nav-bar's own sticky is disabled inside. */
.sticky-head {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sticky-head .nav-bar {
    position: static;
}

.portal-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 30px;
    background-color: var(--bg-white);
    /* matches the 1px rule the nav carries above it */
    border-bottom: 1px solid #eee;
    color: #000;
    font-size: 18px;
    line-height: 30px;
    text-decoration: none;
}

.portal-bar:hover {
    color: var(--teal);
}

.portal-bar img {
    height: 24px;
    width: auto;
}

/* Contact: the portal block is two more cells in the address grid, so the
   AppFolio logo inherits the SHIR logo's column and lines up under it. */
.contact-divider {
    grid-column: 1 / -1;
    border-top: 1px solid var(--navy);
    margin-top: 1.5rem;
}

.portal-logo,
.portal-info {
    align-self: center;
    padding-top: 1.5rem;
}

/* auto margins, not text-align: the img is display:block and text-align
   cannot move it. */
.portal-logo img {
    display: block;
    width: 75px;
    height: 75px;
    margin: 0 auto;
}

.portal-label {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--teal);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .portal-bar {
        font-size: 15px;
    }
    .portal-bar img {
        height: 20px;
    }
    .portal-logo img {
        margin: 0 auto;
    }
}

/* Secondary "Video" button beside "Gallery" on the property cards that have a
   before/after walkthrough. Outlined so the pair reads as primary + secondary
   rather than two competing solid blocks. */
.btn-video {
    background-color: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
    /* keep the same box as .btn despite gaining a 1px border */
    padding: calc(0.6rem - 1px) calc(1.8rem - 1px);
}

.btn-video::before {
    content: "\25B6";
    font-size: 0.7em;
    margin-right: 0.5em;
}

.btn-video:hover {
    background-color: var(--navy);
    color: var(--light-text);
    border-color: var(--navy);
}
