:root {
    --sw-orange: #f34e3a;
    --sw-orange-dark: #eb4936;
    --sw-black: #29282D;
    --text-gray-700: #29282d;
    --text-gray-600: #29282d;
    --border-color: #e5e7eb;
}

/* Other Locations Styling - Subtle Orange */
.other-locations {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.other-locations h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sw-black);
    margin-bottom: 12px;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.location-tag {
    display: inline-block;
    background: rgba(243, 78, 58, 0.1);
    color: var(--sw-orange);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    border: 1px solid rgba(243, 78, 58, 0.2);
}

.location-tag:hover {
    background: rgba(243, 78, 58, 0.15);
    color: var(--sw-orange-dark);
    border-color: rgba(243, 78, 58, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(243, 78, 58, 0.15);
}


/* Map styling */
.venue-map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px 0;
}

/* Venue information styling */
.venue-address {
    margin-bottom: 20px;
    flex: 1;
    margin: auto;
    margin-left: 1rem;
}

.venue-address h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--sw-black);
}

.venue-directions, 
.venue-parking {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.venue-directions h4,
.venue-parking h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--sw-black);
}

.workshops-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 2rem;
}

.workshop-detail {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 60px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    width: 90%;
    max-width: 1200px;
    margin: auto;
    
}

.workshop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 20px;
    padding-right: 20px;
    background: url(https://staging78.speedworks.training/wp-content/uploads/2024/03/tactile_noise.webp);
}

.workshop-header-left {
    flex: 1;
}

/* Event Card Styles */

.event-card-container {
    width: 100%;
    max-width: 1328px;
    margin: 0 auto;
    padding: 1.5rem;
}


.workshop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.events-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.workshop-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    max-width: 450px;
    min-width: 280px;
    margin: 0 auto;
    width: 100%;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    padding: 20px;
    flex-grow: 1;
}

.content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}


.session {
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.session:hover {
    background: #f0f0f0;
}

.session-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f34e3a;
    font-weight: 600;
    margin-bottom: 5px;
}

.session-header i {
    font-size: 14px;
}

.session-month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.session-details {
    margin-left: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.workshop-card .title h2 {
    font-size: 23px;
    margin-bottom: 0;
    padding: 0 20px;
    text-align: center;
}

.buttons {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 15px;
    margin-top: auto;
}


.btn {
    flex: 1;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
    width: auto; /* Reset width */
    max-width: none; /* Reset max-width */
    margin-top: auto;
}

.btn-learn {
    background: #f5f5f5;
    color: #333;
}

.btn-learn:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
    color: #333;
}

.workshop-label {
    display: inline-block;
    background: #f34e3a;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.workshop-title {
    font-family: 'Futura', system-ui, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #29282D;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}














 .workshop-card-header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.workshop-header-left {
    flex: 1;
}

.host-section {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    min-width: 400px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    flex: 1;
}

.host-title {
    font-family: 'Futura', system-ui, sans-serif;
    font-size: 18px;
    color: #29282D;
    margin: 0 0 24px 0;
    text-align: center;
    letter-spacing: 1px;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
}

    
    .hosts-grid {
        gap: 15px;
    }
    

.host-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.host-image-container {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.host-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host-name {
    display: inline-block;
    background: #f34e3a;
    color: white;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}


.section-title {
    font-family: 'Futura', system-ui, sans-serif;
    font-size: 46px;
    font-weight: 600;
    color: #29282D;
    margin: 40px 0;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
    text-align: center;
}

/* .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f34e3a;
} */

.expect-section {
        padding: 10px 15px;
    }

    .button-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button,
    {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    

    
    .section-heading {
        font-size: 2rem;
    }
    
    .summary-section,
    .pricing-section,
    .section-why-attend {
        padding: 30px 10px;
    }-section {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

/* Summary section image styles */
.summary-images {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
    align-items: flex-start; /* Align to the top */
}

.summary-image.landscape-left {
    flex: 2;
    max-width: 65%;
    position: relative;
}

.summary-image.portrait-right {
    flex: 1;
    max-width: 30%;
    position: relative;
}

.summary-image img.landscape-image {
    width: 100%;
    height: auto; /* Keep natural aspect ratio */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block; /* Remove any extra space */
}

.summary-image img.portrait-image {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%; /* Match parent height */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Set height of portrait container to match landscape */
.summary-images {
    position: relative;
}


.expect-grid {
    display: grid;
    gap: 16px;
}

.expect-item {
    display: flex;
    /* align-items: flex-start; */
    gap: 20px;
    padding: 24px;
    background: white;
    transition: transform 0.2s ease;
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    align-items: center;
}

.expect-item:hover {
    transform: translateY(-2px);
}

.expect-icon {
    min-width: 36px;
    height: 36px;
    background: #f34e3a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.expect-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #29282D;
}

.expect-cta {
    margin-top: 40px;
    padding: 30px;
    background: rgba(243, 78, 58, 0.05);
    border-radius: 12px;
    text-align: center;
}

.expect-cta p {
    margin: 0;
    font-size: 20px;
    color: #f34e3a;
    font-weight: 500;
}

expect-cta .book-now-btn:hover {
    color: white;
}

/* Styling for the wysiwyg shortcode content */
.acf-workshop-overview {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

/* First paragraph in the div */
.acf-workshop-overview > p:first-of-type {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

/* Paragraph before the list */
.acf-workshop-overview > p:first-of-type + p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Unordered list */
.acf-workshop-overview ul {
    list-style-type: disc;
    margin-bottom: 40px;
}

.acf-workshop-overview ul li {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin: 5px;
}

.acf-workshop-overview ul li::before {
    content: "\2022";
    color: #333;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Last paragraph after the list */
.acf-workshop-overview > p:last-of-type {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

/* Main Header Styles */
.workshop-header {
    position: relative;
    overflow: hidden;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.tagline {
    color: var(--sw-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 4px;
    font-size: 0.9rem;
}
.main-heading {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    hyphens: auto;
}
.subheading-container {
    border-left: 4px solid var(--sw-orange);
    padding-left: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}
.subheading {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
}
.cta-button {
    background-color: var(--sw-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-button:hover {
    background-color: var(--sw-orange-dark);
    color: white;
}
/* Summary Section Styles */
.summary-section {
    margin: 0 auto;
    position: relative;
    padding: 50px 60px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.06);
    width: 90%;
    max-width: 1200px;
    border-radius: 12px;
}
.summary-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sw-black);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.summary-intro {
    color: var(--sw-black);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    padding-left: 1rem;
    border-left: 4px solid var(--sw-orange);
    font-size: 18px;
}
.summary-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}
.summary-steps .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--sw-orange);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
}
.step-content {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Why Attend Section */
.section-why-attend {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.section-why-attend .section-header {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-why-attend .section-title {
    font-size: 40px;
    font-weight: 900;
    color: #2d2d2d;
    margin: 0;
}

/* Layout for the reasons */
.section-why-attend .reason-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-why-attend .reason-box {
    flex: 0 1 300px;
    max-width: 300px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Title style */
.section-why-attend .title {
    font-size: 20px;
    font-weight: bold;
    color: var(--e-global-color-75de1d6);
    margin-bottom: 15px;
}

/* Text description */
.section-why-attend .description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.section-why-attend .icon-wrapper {
    background-color: #F9F0EF;
    width: 80px;  /* Increased from 64px */
    height: 80px; /* Increased from 64px */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 45px;
    padding: 20px;
    border-radius: 12px 12px 12px 12px;
}

/* Font Awesome icon style */
.section-why-attend .icon i {
    font-size: 36px; 
    color: var(--sw-orange);
}

/* Dashicons style */
.section-why-attend .icon .dashicons {
    font-size: 35px; 
    width: auto;
    height: auto;
    color: var(--sw-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Media Library image style */
.section-why-attend .icon img {
    max-width: 50px; 
    max-height: 50px;
    display: block;
    margin: 0 auto;
}

/* Target ONLY the dashicons-admin-site in the Why Attend section */
.section-why-attend .reason-box .icon-wrapper .icon .dashicons.dashicons-admin-site {
    /* Reset to default display */
    display: inline-block;
    /* Make it the right size */
    font-size: 36px;
    /* Override WordPress defaults */
    width: 36px;
    height: 36px;
    /* Center it optically */
    vertical-align: middle;
    /* Remove any default margins */
    margin: 0;
}

/* Pricing Section Styles */

.pricing-container {
    display: flex
;
    flex-direction: column;
    gap: 30px;
    margin-top: 2rem;
}
.pricing-section {
  text-align: center;
  margin: 2rem auto;
  padding: 0 1rem;
    max-width: 1328px;

}
.pricing-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: bold;
  color: var(--sw-black);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.pricing-card {
  /* width: 100%; */
  margin: 0 auto;
  background: white;
  border-radius: clamp(8px, 2vw, 16px);
  padding: clamp(1.5rem, 4vw, 3.125rem);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.pricing-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}
.pricing-info {
  text-align: left;
  flex: 1;
          min-width: auto;

}
.pricing-info h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--sw-orange);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
  margin-top: 0;
}
.pricing-info p {
  color: var(--sw-black);
  margin-bottom: 0.5rem;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.4;
}
.pricing-info .disclaimer {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--sw-black);
  opacity: 0.7;
  margin-top: 1rem;
}
.pricing-amount {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-height: auto; /* Reset min-height */
}
.pricing-amount .btn {
    margin-top: 20px;
    display: inline-block;
}
.price {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bold;
  color: var(--sw-black);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  margin-top: 0;
}

    
    .pricing-content {
        gap: 1.5rem;
    }
    


/* Pricing section button styling fix */
.pricing-section .btn,
.pricing-amount .btn {
    display: inline-block;
    background: var(--sw-orange);
    color: white;
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
    text-align: center;
}

.pricing-section .btn:hover,
.pricing-amount .btn:hover {
    background: var(--sw-orange-dark);
    transform: translateY(-2px);
    color: white;
}
/* Details Section Styles */
.info-container {
    max-width: 1328px;
    margin: 0 auto;
    padding: 1.5rem;
}


.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.card-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0
}
.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.icon {
    width: 2rem;
    height: 2rem;
    color: var(--sw-orange);
}
h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-gray-700);
}
.card-content {
    padding: 1.25rem;
    text-align: left;
}
.venue-content {
    display: flex;
}

.card-content p {
        font-weight: 500;
    color: var(--sw-black);
}
.dates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.date-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}
.label {
    font-weight: 500;
    color: var(--sw-black);
}
.value {
    color: var(--text-gray-600);
}
.format-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}
.format-details p {
    color: var(--text-gray-600);
}
.format-details strong {
    color: var(--text-gray-700);
}
.map-container {
    margin-top: 1rem;
    width: 100%;
    height: 16rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex: 2.5;
}
.price-highlight {
    color: var(--sw-orange);
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.price-note {
    font-size: 0.875rem;
    color: var(--text-gray-600);
    margin-bottom: 1.5rem;
    text-transform: lowercase;
}
.book-button {
    width: auto;
    padding: 0.75rem 1.5rem;
    background-color: var(--sw-orange);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: block;
    text-align: center;
}
.book-button:hover {
    background-color: var(--sw-orange-dark);
    color: white;
}

.book-button.short {
    display: inline-block;
    padding: 12px 40px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: auto !important; /* Force override */
}

.price-inline {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-gray-700);
    margin-left: auto;
}

/* Section Title Styles */
.section-heading {
    font-family: "Futura", Sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    line-height: 1em;
    letter-spacing: 0px;
    word-spacing: 0em;
    color: var(--sw-black); /* Using sw-black as a fallback for var(--e-global-color-941dad7) */
    text-align: center;
    margin-bottom: 3rem;
}

/* Button container for better responsive handling */
.button-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .main-heading {
        font-size: 3.5rem;
    }
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .main-heading {
        font-size: 4rem;
    }
}



@media (max-width: 1200px) {
    .workshop-detail,
    .summary-section {
        width: 95%;
        padding: 30px 20px;
    }
    
    .workshop-header {
        padding: 80px 20px;
    }
    
    /* .workshop-card-header {
        flex-direction: column;
    } */
    
    .section-title{
        margin-top: 0px;
    }
    
    .workshop-card-header{
        margin-bottom: 10px;
        gap: 0px;
    }
    
    .hosts-grid {
        max-width: 100%;
    }
    
    .workshop-header-left {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .pricing-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .pricing-info, .pricing-amount {
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    .pricing-amount {
        min-height: auto;
        gap: 1.5rem;
    }
}


@media (max-width: 1200px) {
    .hosts-grid {
        max-width: 100%;
    }

    .workshop-header-left {
        width: 100%;
        margin-bottom: 30px;
    }
}
@media (max-width: 1024px) {
    .venue-content {
        flex-direction: column;
    }
    .venue-address {
        margin-left: none;
    }

    .section-why-attend .reason-container {
        justify-content: space-around;
    }
}

@media (max-width: 991px) {
    .section-why-attend .reason-box {
        flex: 0 1 45%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .host-section {
        padding: 20px;
    }
    .location-tags {
        justify-content: center;
    }
    
    .location-tag {
        font-size: 12px;
        padding: 5px 12px;
    }
    .summary-image.landscape-left {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .summary-image.portrait-right {
        display: none; /* Hide portrait image on mobile */
    }
        .section-why-attend .reason-box {
        flex: 0 1 100%;
        max-width: 450px;
    }
    .workshop-detail,
    .summary-section {
        width: 100%;
        padding: 20px 15px;
        border-radius: 8px;
    }
    
    .workshop-header {
        padding: 60px 15px;
    }
    
    .workshop-title {
        font-size: 28px;
    }
    
    .expect-section {
        padding: 24px;
    }
    
    .expect-item {
        padding: 20px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 2rem;
    }
    
    .section-why-attend .reason-container {
        gap: 30px;
    }
    
    .section-why-attend .reason-box {
        max-width: 90%;
    }
    
    .container {
        padding: 1rem;
    }
    
    h2 {
        font-size: 1.25rem;
        margin: 0;
    }
    
    .header-content {
        gap: 0.5rem;
    }
    
    .card-content {
        padding-top: 0;
    }
    
    .price-inline {
        font-size: 1.25rem;
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .summary-section {
        padding: 20px 15px;
    }
    
    .summary-intro {
        margin-top: 2rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .subheading {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
    
    .reason-box {
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    .hosts-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .host-image-container {
        width: 100px;
        height: 100px;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
        .pricing-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .pricing-info, .pricing-amount {
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    .pricing-amount {
        min-height: auto;
        gap: 1.5rem;
    }
    
    .buttons {
        justify-content: center;
    }
    
    .btn {
        width: auto;
    }
    
}

@media (max-width: 480px) {
    .host-image-container {
        width: 100px;
        height: 100px;
    }
    
    .hosts-grid {
        gap: 15px;
    }
@media (max-width: 480px) {
    .section-why-attend .section-title {
        font-size: 30px;
    }
    
    .section-why-attend .reason-container {
        flex-direction: column;
        align-items: center;
    }
    
    .section-why-attend .reason-box {
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn {
        width: auto;
        min-width: 120px;
    }
    
    .pricing-amount .btn {
        width: auto;
        min-width: 140px;
        max-width: none;
    }

    .workshop-detail {
        padding: 20px 15px;
    }
    
    .workshop-header {
        padding: 40px 10px;
    }
    
    .workshop-header-left {
        text-align: center;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .host-image-container {
        width: 100px;
        height: 100px;
    }
    
    .expect-section {
        padding: 10px 15px;
    }
        
    .hosts-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
        
    .button-container {
        flex-direction: column;
        gap: 10px;
    }
        

        
    .pricing-card {
        padding: clamp(1rem, 3vw, 1.5rem);
    }
        
    .pricing-content {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing-info, .pricing-amount {
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .pricing-amount {
        min-height: auto;
        gap: 1.5rem;
    }

    .buttons {
        justify-content: center;
    }

        
    .pricing-info {
        min-width: auto;
    }

    .cta-button,
    .btn {
        width: auto !important;
        max-width: none !important;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .btn {
        min-width: 120px;
    }
    
    .pricing-amount .btn {
        width: auto !important;
        min-width: 140px;
        max-width: none !important;
    }
    
    .book-button {
        width: auto !important;
        display: inline-block;
    }
    
    .summary-section,
    .pricing-section,
    .section-why-attend {
        padding: 30px 10px;
    }
}

@media (max-width: 380px) {
    .date-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .value {
        font-size: 0.9rem;
    }
    
    .workshop-card {
        min-width: 260px;
    }
    
    .session-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-left: 10px;
    }
    
    .buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    
    .host-image-container {
        width: 80px;
        height: 80px;
    }
    
    .host-name {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .main-heading {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .expect-item {
        flex-direction: column;
        padding: 15px;
    }
    
    .expect-icon {
        margin-bottom: 10px;
    }
    
    .step-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .step-number {
        margin-bottom: 5px;
    }
    
    .cta-button svg {
        display: none;
    }
}