.elementor-3284 .elementor-element.elementor-element-56c3d1b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3284 .elementor-element.elementor-element-08be709{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-3284 .elementor-element.elementor-element-600a4dd{width:var( --container-widget-width, 101.263% );max-width:101.263%;--container-widget-width:101.263%;--container-widget-flex-grow:0;}.elementor-3284 .elementor-element.elementor-element-600a4dd.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-3284 .elementor-element.elementor-element-762bdee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f8e6f1f *//* --- Core Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #ffffff;
    --text-main: #333333;          /* Soft dark gray for body text */
    --accent-gold: #a68c6d;        /* The specific golden-beige from your homepage headings */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* --- The Layout Grid --- */
.grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 2rem; /* Seamless stacking just like your screenshot */
}

/* --- Text Content Styling --- */
.grid-text {
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Small gold text above headings */
.section-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

/* Elegant Serif Headings */
.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 1.8rem;
}

/* Perfectly spaced body text */
.body-text {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-main);
    letter-spacing: 0.01em;
}

/* --- Image Styling --- */
.grid-image {
    width: 100%;
    height: 100%;
    display: flex;
}

.grid-image img {
    width: 100%;
    height: 500px; /* Uniform height matching the image ratio in your screenshot */
    object-fit: cover;
    display: block;
}

/* --- Responsive Layout for Mobile --- */
@media (max-width: 900px) {
    .grid-row {
        grid-template-columns: 1fr;
    }
    
    .grid-row.reverse {
        display: flex;
        flex-direction: column;
    }

    /* Keeps image on top for the reversed section on mobile layouts */
    .grid-row.reverse .grid-image {
        order: -1;
    }

    .grid-text {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .grid-image img {
        height: 350px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-600a4dd *//* Container & 4-Column Grid */
.social-team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.social-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Exactly 4 Equal Columns */
  gap: 16px;
}

/* Individual Social Card */
.social-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

/* Header Row (Avatar + Name) */
.card-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* Small Circular Profile Pic */
.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #8c6d58; /* Coffee accent ring */
  padding: 1px;
  flex-shrink: 0;
}

/* User Typography */
.user-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f1419;
  margin: 0;
  line-height: 1.2;
}

.user-handle {
  font-size: 0.78rem;
  color: #536471;
  display: block;
}

.user-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8c6d58;
  margin-bottom: 6px;
}

.social-bio {
  font-size: 0.825rem;
  line-height: 1.4;
  color: #333333;
  margin: 0;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .social-team-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablets */
  }
}

@media (max-width: 576px) {
  .social-team-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9a82d04 *//* --- Action Button Additions --- */
.action-container {
    margin-top: 2.5rem;
}

.minimal-btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--accent-gold);
    transition: color 0.3s ease, border-color 0.3s ease;
    display: inline-block;
}

.minimal-btn:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--text-main);
}/* End custom CSS */