@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --dark: #1a1a1a;
  --gray: #818181;
  --text: #5D5D5D;
  --border: #E4E7E9;
  --accent: #E29D4A;
  --red: #ff2c35;
  --white: #ffffff;
  --light-bg: #F7FBFD;
  --title-font:  "Playfair Display", serif;
  --body-font:  "DM Sans", sans-serif;;
}


* { box-sizing: border-box; }
body { margin: 0; background: #ffffff; color: var(--dark); font-family: var(--body-font); }

h1, h2, h3, h4, h5, h6 { font-family: var(--title-font); }

.heading small { text-transform: uppercase; color: var(--accent); letter-spacing: 0.08em; font-size: 0.82rem; }
.heading h1 { margin: 8px 0 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; }
.heading h1 strong { font-weight: 900; } 
.heading h1 span { color: var(--accent);}    
.filters_area {
    margin: 32px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex: 0 0 auto;
    width: calc(50% - 1rem);
}
.event-search {
    flex: 0 0 auto;
    width: calc(50% - 1rem);
}
.search_input_wrapper {
    position: relative;
}
.filter {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1;
}
.filter label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.filter select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .8rem;
    background: var(--white);
    font-size: 0.92rem;
    color: #000;
}
.event-search input {
    border: 1px solid var(--border);
    border-radius: .4rem !important;
    padding: .7rem;
    background: var(--white);
    font-size: 0.92rem;
    display: block;
    width: 100%;
    background-color: var(--light-bg);
}
.search_icon {
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    width: 3rem;
    background-color: var(--light-bg);
    border-radius: .3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    transition: background-color .2s ease;
    cursor: pointer;
}
.search_icon:hover {
    background-color: #dfe5e8;
}
.filter select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--light-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236d7881' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 34px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.filter select:focus,
.event-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 248, 217, 0.18);
  outline: none;
}
.filter input { width: 100%; }

.event-list { display: flex; flex-direction: column; gap: 14px; }
.event-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 18px;
    margin-bottom: 1rem;
    transition: box-shadow .2s ease;
}
.event-card:hover { 
    box-shadow: 0 8px 26px rgba(24,35,48,.12); 
}

.date-block {
    width: 90px;
    text-align: center;
    border-right: 1px solid var(--border);
    padding-right: 14px;
    color: var(--accent);
}
.date-day {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    font-family: var(--title-font);
}
.date-month { 
    text-transform: uppercase;
    letter-spacing: 0.08em; 
    margin-top: 6px; 
    color: var(--dark); 
    font-weight:700; 
}
.date-year { 
    font-size: 0.82rem; 
    color: var(--text); 
    margin-top: 4px; 
}

.event-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: .2rem;
    color: var(--dark);
    font-size: .9rem;
}
.event-title {
    margin: 0;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 400;
}
.mi_icon {
    color: var(--accent);
}
.event-subtitle { 
    color: var(--text); 
    margin: 0; 
    font-size: 0.94rem; 
}
.meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; color: #717d87; font-size: 0.85rem; }
.meta span { display:flex; align-items:center; gap: 6px; }
.meta svg { width: 13px; height: 13px; fill: currentColor; }

.cta { display: flex; justify-content: flex-end; }
.register_btn {
    border: 1px solid var(--red);
    background: var(--red);
    color: #fff;
    border-radius: .4rem;
    text-transform: uppercase;
    font-weight: 500;
    padding: .8rem 2rem;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
    display: inline-block;
}
.register_btn:hover { transform: translateY(-1px); background: transparent; color: var(--red); }
.featured-swiper .swiper-pagination {
    position: static;
    margin-top: 1rem;
}
.featured-slider { margin-top: 24px; }
.featured-header { margin-bottom: 14px; }
.featured-header small { text-transform: uppercase; color: #db7700; letter-spacing: 0.12em; font-size: 0.8rem; }
.featured-header h2 { margin: 8px 0 0; font-size: clamp(2rem, 3.5vw, 2.6rem); }
.swiper { width: 100%; padding-bottom: 24px; }
.swiper-wrapper { align-items: center; }
.swiper-slide { width: 100% !important; display: flex; justify-content: center; }

.featured-swiper .swiper-pagination .swiper-pagination-bullet {
    width: .8rem;
    height: .8rem;
    background-color: #EFEFEF;
    border: 1px solid #EFEFEF;
    opacity: 1;
    position: relative;
}
.featured-swiper .swiper-pagination .swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(0);
    width: 0.32rem;
    height: 0.32rem;
    margin-top: -0.16rem;
    margin-left: -0.16rem;
    border-radius: 50%;
    background-color: rgb(226 157 74);
    transition: transform 0.3s ease;
    transform-origin: center;
}
.featured-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #d58f3d;
    background-color: #ffffff;
    transform: scale(1.2);
    
}
.featured-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    transform: scale(1);
}

.featured-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    border: 1px solid #dfe6ed;
    border-radius: 2rem;
    overflow: hidden;
    padding: 2rem;
}
.featured-left {
    flex: 0 0 auto;
    width: calc(50% - 1rem);
}
.featured-left h3 { margin: 0 0 10px; font-size: clamp(1.2rem, 2vw, 2.4rem); }

.featured-left p { 
    margin: 0 0 14px; 
    line-height: 1.45; 
    color: var(--gray); 
    font-size: clamp(0.9rem, 2vw, 1.125rem);
}

.featured-details {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0;
    display: grid;
    row-gap: 8px;
    color: #4c5965;
    font-size: 0.93rem;
}
.featured-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(.9rem, 2vw, 1.1rem);
    color: var(--text);
}
.fd_icon {
    color: var(--accent)
}
.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2rem;
}
.featured-tags span {
    display: inline-block;
    border: 1px solid #f5d6a6;
    background: #fff7eb;
    color: var(--accent);
    border-radius: 10px;
    padding: .6rem 1rem;
    font-weight: 500;
    font-size: clamp(.9rem, 2vw, 1.08rem);
    text-transform: uppercase;
}
.featured-right {
    width: calc(50% - 1rem);
    flex: 0 0 auto;
}
.featured-image {
    margin-bottom: 2rem;
}
.featured-image img {
    height: 220px;
    background-size: cover;
    background-position: center;
    width: 100%;
    border-radius: 1.2rem;
    display: block;
}
.featured-summary {
    padding: 1.6rem;
    border-radius: 1.8rem;
    border: 1px solid transparent;
    background:
    linear-gradient(#f4f4f4, #f4f4f4) padding-box,
    linear-gradient(150deg, #E29D4A, rgb(226 157 74 / 0%), #E29D4A) border-box;
    position: relative;
}
.featured-summary > * {
    position: relative;
    z-index: 1;
}
.featured-summary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.8rem;
    /* background:url('https://pwrretirementgroup.com/wp-content/uploads/2026/03/bg_01.png'); */
    z-index: 0;
}
.fs_pills {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.fs_pill {
    background: #fff;
    border-radius: 1rem;
    padding: .6rem 1rem;
    color: #828282;
    font-size: 0.82rem;
    font-weight: 500;
    flex: 0 0 auto;
    width: calc(50% - .4rem);
}
.fs_pill > h4 {
    color: var(--accent);
    margin: 0 0 .2rem;
    font-size: clamp(1rem, 2vw, 1.6rem);
    line-height: 1;
}
.fs_pill > p {
    margin: 0;
}

.presenter {
    color: #405166;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: .8rem;
    border-radius: 1rem;
    padding: .8rem 1rem;
    margin-bottom: 1rem;
}
.presenter_icon {
    flex: 0 0 auto;
    width: 2.4rem;
    height: 2.4rem;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.presenter > h4 {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.4rem);
    flex: 1 1;
}
.registration {
    color: #8C8C8C;
    background-color: #fff;
    border-radius: 1rem;
    padding: .8rem 1rem;
}
.registration > label {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
}
.registration_btn {
    color: var(--accent);
}
.registration > p {
    margin: 2px 0;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 920px;
    }
}

@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 1080px;
    }
}

@media (min-width: 1280px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1240px;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}




@media (max-width: 1020px) {
  .featured-right { width: 320px; }
}
@media (max-width: 900px) {
  .featured-card { flex-direction: column; }
  .featured-right { width: 100%; min-width: 100%; }
  .featured-left { width: 100%; }
  .featured-details { margin-bottom: 10px; }
  .featured-tags { margin-bottom: 10px; }
  .event-card { flex-wrap: wrap; }
  .date-block { min-width: 88px; }
  .cta { justify-content: flex-start; padding-left: 6px; margin-top: 8px; width: 100%; }
}


@media (max-width: 700px) {
    .event-card { flex-wrap: wrap; }
    .date-block { min-width: 78px; }
    .event-title { font-size: 1.2rem; }
    .filters { display: flex; flex-direction: column; width: 100%;}
    .event-card { text-align: left; }
    .filters_area {
        flex-direction: column;
        width: 100%;
    }
    .event-search {
        width: 100%;
    }
    .featured-card {
        gap: 1rem;
        border-radius: 1.5rem;
        padding: 1rem;
    }
    .featured-summary {
        padding: 1rem;
    }
    .featured-image img {
        height: 160px;
    }
}


