/*
Theme Name:   Hello Elementor Child
Theme URI:    https://wsra-web.dev-works-test.co.uk/
Description:  Hello Elementor Child Theme with WSRA Shortcodes
Author:       WSRA
Template:     hello-elementor
Version:      1.0.0
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap");


/* ============================================================
   BLOCK 1: EVENTS GRID
   ============================================================ */
.wsra-events-container {
    max-width: 1280px;
    margin: 0 auto;
}
.wsra-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.wsra-events-card {
    border: 3px solid oklch(85.2% 0.199 91.936);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}
.wsra-events-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px -8px rgba(0,0,0,0.3);
}
.wsra-events-image-wrap {
    height: 376px;
    overflow: hidden;
}
img.wsra-events-image {
    height: 376px !important;
    width: 100%;
    object-fit: cover;
    display: block;
}
.wsra-events-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.wsra-events-title-wrap {
    flex: 0 0 auto;
}
.wsra-events-title {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #0a0b0e;
    margin: 0 0 12px 0;
}
.wsra-events-properties {
    flex: 1 1 auto;
}
.wsra-events-date,
.wsra-events-venue,
.wsra-events-price,
.wsra-events-tickets,
.wsra-events-highlights {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgb(101, 101, 101);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px 0;
}
.wsra-events-date strong,
.wsra-events-venue strong,
.wsra-events-price strong,
.wsra-events-highlights strong {
    font-weight: 600;
    color: #0a0b0e;
}
.wsra-events-tickets {
    font-weight: 500;
    color: #30448f;
    margin: 0 0 8px 0;
}
.wsra-events-highlights {
    font-size: 14px;
    color: #777;
    margin: 0 0 16px 0;
    align-items: flex-start;
}
.wsra-event-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: #fdcd2e;
}
.wsra-icon-sparkle {
    width: 16px;
    height: 16px;
    margin-top: 3px;
}
.wsra-events-button-wrap {
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 22px;
}
.wsra-events-btn {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 29px;
    color: #0a0b0d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: oklch(85.2% 0.199 91.936);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}
.wsra-events-btn:hover {
    background: oklch(75.2% 0.199 91.936);
    color: #0a0b0d;
    text-decoration: none;
    transform: translateY(-2px);
}
.wsra-events-error {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    max-width: 1280px;
    margin: 20px auto;
}
.wsra-events-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 18px;
}


/* ============================================================
   BLOCK 2: EVENTS SLIDER
   ============================================================ */
.wsra-slider-container {
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.wsra-slider-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 100%;
}
.wsra-slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
.wsra-slider-card {
    background: transparent;
    padding: 20px 0;
    text-align: left;
    border: none;
    box-shadow: none;
}
.wsra-slider-title {
    font-size: 24px;
    line-height: 31px;
    font-weight: 700;
    color: #000000;
    font-family: "Work Sans", sans-serif;
}
.wsra-slider-date {
    font-size: 24px;
    line-height: 31px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}
.wsra-slider-date strong {
    color: #15171c;
    font-weight: 500;
}
.wsra-slider-venue {
    font-size: 24px;
    line-height: 31px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}
.wsra-slider-venue strong {
    color: #15171c;
    font-weight: 500;
}
.wsra-slider-btn {
    display: inline-block;
    background: #FBCD2F;
    padding: 10px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: #15171c;
    font-weight: 500;
    font-size: 15px;
line-height: 29px;
    transition: background 0.3s ease;
    font-family: "Roboto", sans-serif;
}
.wsra-slider-btn:hover {
    background: #E6B82F;
    color: #15171c;
}


/* ============================================================
   BLOCK 3: NEWS
   ============================================================ */
.wsra-news-container {
    max-width: 1280px;
    margin: 0 auto;
}
.wsra-news-header {
    text-align: center;
    margin-bottom: 36px;
}
.wsra-news-title {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 44px;
    color: #0a0b0e;
    margin: 0;
}
.wsra-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.wsra-news-card {
    border: 3px solid oklch(85.2% 0.199 91.936);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    position: relative;
}
.wsra-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.wsra-news-image-wrap {
    width: 100%;
    overflow: hidden;
}
.wsra-news-image-wrap img {
    height: 276px !important;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}
.wsra-news-card:hover .wsra-news-image-wrap img {
    transform: scale(1.05);
}
.wsra-news-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
    border-radius: 15px;
}
.wsra-news-placeholder span {
    font-size: 48px;
    opacity: 0.5;
}
.wsra-news-body {
    background: #ffffff;
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    align-items: flex-start;
}
.wsra-news-category {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #0a0b0d;
    background: oklch(85.2% 0.199 91.936);
    padding: 2px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: 20px;
    left: 20px;
}
.wsra-news-date {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #888;
    margin-bottom: 6px;
}
.wsra-news-headline {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: rgb(10, 11, 14);
    margin: 0 0 6px 0;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wsra-news-headline a {
    color: rgb(10, 11, 14);
    text-decoration: none;
}
.wsra-news-headline a:hover {
    color: #30448f;
}
.wsra-news-excerpt {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: rgb(101, 101, 101);
    margin: 0 0 12px 0;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wsra-news-readmore {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 29px;
    color: #0a0b0d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: oklch(85.2% 0.199 91.936);
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: auto;
}
.wsra-news-readmore:hover {
    background: oklch(75.2% 0.199 91.936);
    color: #0a0b0d;
    text-decoration: none;
    transform: translateY(-2px);
}
.wsra-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}
.wsra-news-readmore:hover .wsra-arrow {
    transform: translateX(3px);
}
.wsra-news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}
.wsra-news-prev,
.wsra-news-next {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #0a0b0d;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 100px;
}
.wsra-news-prev:hover,
.wsra-news-next:hover {
    text-decoration: underline;
    background-color: oklch(75.2% 0.199 91.936);
}
.wsra-news-prev-disabled,
.wsra-news-next-disabled {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ccc;
    padding: 6px 12px;
    cursor: not-allowed;
}
.wsra-news-page-numbers {
    display: flex;
    gap: 8px;
}
.wsra-news-page-numbers a,
.wsra-news-page-numbers span {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #0a0b0d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: oklch(85.2% 0.199 91.936);
    padding: 8px 20px;
    border-radius: 100px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: auto;
}
.wsra-news-page-numbers span.active {
    background: #FDCD2E;
    color: #000000;
    border: 1px solid #e5e5e5;
}
.wsra-news-page-numbers a:hover:not(.active) {
    background: #f0f4ff;
}
.wsra-news-footer {
    text-align: center;
    margin-top: 36px;
}
.wsra-news-seeall {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #30448f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.wsra-news-seeall:hover {
    text-decoration: underline;
    color: #30448f;
}
.wsra-news-error {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    max-width: 1280px;
    margin: 20px auto;
}
.wsra-news-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 18px;
}


/* ============================================================
   BLOCK 4: PRESIDENTS
   ============================================================ */
.pres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pres-card {
    border: 3px solid oklch(85.2% 0.199 91.936);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}
.pres-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.pres-image-wrap {
    width: 100%;
    overflow: hidden;
}
.pres-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.pres-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
}
.pres-placeholder span {
    font-size: 48px;
    opacity: 0.5;
}
.pres-content {
    background: #ffffff;
    padding: 24px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pres-title {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: rgb(10, 11, 14);
    margin: 0 0 4px 0;
}
.pres-role {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 29px;
    color: rgb(101, 101, 101);
    margin: 0 0 16px 0;
}
.pres-readmore {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 29px;
    color: #0a0b0d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: oklch(85.2% 0.199 91.936);
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: auto;
}
.pres-readmore:hover {
    background: oklch(75.2% 0.199 91.936);
    color: #0a0b0d;
    text-decoration: none;
    transform: translateY(-2px);
}
.pres-error {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    max-width: 1200px;
    margin: 20px auto;
}
.pres-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 18px;
}


/* ============================================================
   BLOCK 5: STEEL SHOE
   ============================================================ */
.steel-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.steel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.steel-card {
    border: 3px solid oklch(85.2% 0.199 91.936);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}
.steel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.steel-image-wrap {
    width: 100%;
    overflow: hidden;
}
.steel-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.steel-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
}
.steel-placeholder span {
    font-size: 48px;
    opacity: 0.5;
}
.steel-content {
    background: #ffffff;
    padding: 24px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    align-items: flex-start;
}
.steel-title {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: rgb(10, 11, 14);
    margin: 0 0 8px 0;
    text-align: left;
}
.steel-description {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 29px;
    color: rgb(101, 101, 101);
    margin: 0 0 16px 0;
    text-align: left;
}
.steel-readmore {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 29px;
    color: #0a0b0d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: oklch(85.2% 0.199 91.936);
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: auto;
}
.steel-readmore:hover {
    background: oklch(75.2% 0.199 91.936);
    color: #0a0b0d;
    text-decoration: none;
    transform: translateY(-2px);
}
.steel-error {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    max-width: 1280px;
    margin: 20px auto;
}
.steel-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 18px;
}


/* ============================================================
   BLOCK 6: HALL OF FAME
   ============================================================ */
.hof-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.hof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hof-card {
    border: 3px solid oklch(85.2% 0.199 91.936);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: transparent;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.hof-image-wrap {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
    overflow: hidden;
    background: #e8e8e8;
}
.hof-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
}
.hof-image:hover {
    transform: scale(1.05);
}
.hof-content {
    background: #ffffff;
    padding: 24px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    align-items: flex-start;
}
.hof-title {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: rgb(10, 11, 14);
    margin: 0 0 4px 0;
}
.hof-role {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 29px;
    color: rgb(101, 101, 101);
    margin: 0 0 8px 0;
}
.hof-description {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 29px;
    color: rgb(101, 101, 101);
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 58px;
    word-break: break-word;
}
.hof-readmore {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 29px;
    color: #0a0b0d;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: oklch(85.2% 0.199 91.936);
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}
.hof-readmore:hover {
    background: oklch(75.2% 0.199 91.936);
    color: #0a0b0d;
    text-decoration: none;
    transform: translateY(-2px);
}
.hof-error {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    max-width: 1280px;
    margin: 20px auto;
}
.hof-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 18px;
}


/* ============================================================
   BLOCK 7: SINGLE PAGE (hofd-container - AS PER YOUR PHP)
   ============================================================ */
.hofd-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 30px;
    box-sizing: border-box;
}
.hofd-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: rgb(10, 11, 14);
    text-decoration: none;
    margin-bottom: 24px;
}
.hofd-back:hover {
    text-decoration: underline;
}
.hofd-title {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    color: rgb(10, 11, 14);
    margin: 0 0 12px 0;
}
.hofd-subtitle {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 29px;
    color: rgb(101, 101, 101);
    margin: 0 0 16px 0;
}
.hofd-image-wrap {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}
.hofd-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: cover;
}
.hofd-content {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 29px;
    color: rgb(101, 101, 101);
    max-width: 900px;
}
.hofd-content ul {
    padding: 0px 0px 10px 0px;
}
.hofd-error {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
}
.hofd-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 18px;
}


/* ============================================================
   BLOCK 8: GIFT VOUCHER
   ============================================================ */
.gv-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.gv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gv-card {
    background: #F4F4F4;
    border-radius: 15px;
    padding: 42px 44px 22px 60px;
    text-align: center;
    row-gap: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
}
.gv-card:hover {
    transform: translateY(-5px);
}
.gv-amount {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 43px;
    height: 197px;
    background-color: #FBCD2F;
    width: 197px;
    display: flex;
    line-height: 53px;
    color: rgb(0, 0, 0);
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}
.gv-button {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 29px;
    color: rgb(244, 244, 244);
    background: #30448F;
    padding: 8px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.gv-button:hover {
    background: #1f2f6e;
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.02);
}
.gv-error {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    max-width: 1200px;
    margin: 20px auto;
}
.gv-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 18px;
}









/* ============================================================
   RESPONSIVE - COMBINED MEDIA QUERIES
   ============================================================ */

/* Tablet and smaller */
@media (max-width: 1024px) {
    .wsra-events-grid,
    .wsra-news-grid,
    .pres-grid,
    .steel-grid,
    .hof-grid,
    .gv-grid, .wsra-news-home-grid  {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .wsra-news-category {
        position: absolute;
        top: 20px;
        left: 20px;
    }

}

/* Mobile */
@media (max-width: 768px) {
    .wsra-events-grid,
    .wsra-news-grid,
    .pres-grid,
    .steel-grid,
    .hof-grid,
    .gv-grid, 
    .wsra-news-home-grid {
        grid-template-columns: 1fr !important;
    }
    

    .wsra-events-title {
        font-size: 20px;
        line-height: 26px;
    }
    .wsra-events-image-wrap {
        height: 220px;
    }
    img.wsra-events-image {
        height: 100% !important;
    }
    
    .wsra-news-title {
        font-size: 28px;
        line-height: 34px;
    }
    .wsra-news-headline {
        font-size: 20px;
        line-height: 26px;
    }
    .wsra-news-category {
        position: absolute;
        top: 55px;
        left: 20px;
    }
    .wsra-news-pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
    .wsra-news-image-wrap img {
        height: 180px !important;
    }
    .wsra-news-placeholder {
        height: 180px;
    }
    
    .gv-card {
        padding: 30px 20px 25px;
        min-height: 160px;
    }
    .gv-amount {
        font-size: 34px;
        line-height: 42px;
    }
    
    .hof-content,
    .steel-content,
    .pres-content {
        padding: 20px 24px 24px;
    }
    .hof-title,
    .steel-title,
    .pres-title {
        font-size: 24px;
        line-height: 30px;
    }
    .hof-image-wrap {
        height: 200px;
    }
    
    .hofd-container {
        padding: 32px 30px;
    }
    .hofd-title {
        font-size: 24px;
        line-height: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .wsra-events-grid,
    .wsra-news-grid,
    .pres-grid,
    .steel-grid,
    .hof-grid,
    .gv-grid,
    .wsra-news-home-grid {
        grid-template-columns: 1fr !important;
    }
    
    .wsra-news-title {
        font-size: 24px;
        line-height: 30px;
    }
    .wsra-news-headline {
        font-size: 18px;
        line-height: 24px;
    }
    .wsra-news-body {
        padding: 12px 15px 18px;
    }
    .wsra-news-card {
        border-width: 2px;
    }
    .wsra-news-excerpt {
        font-size: 14px;
        line-height: 22px;
    }
    .wsra-news-category {
        position: absolute;
        top: 20px;
        left: 20px;
    }
    .wsra-news-pagination {
        gap: 6px;
    }
    .wsra-news-prev,
    .wsra-news-next {
        font-size: 14px;
        padding: 4px 8px;
    }
    .wsra-news-page-numbers a,
    .wsra-news-page-numbers span {
        font-size: 14px;
        padding: 4px 8px;
        min-width: 30px;
    }
    .wsra-news-image-wrap img {
        height: 160px !important;
    }
    .wsra-news-placeholder {
        height: 160px;
    }
    
    .gv-amount {
        font-size: 28px;
        line-height: 36px;
    }
    .gv-button {
        font-size: 14px;
        padding: 6px 20px;
    }
    
    .hof-content,
    .steel-content,
    .pres-content {
        padding: 16px 18px 20px;
    }
    .hof-title,
    .steel-title,
    .pres-title {
        font-size: 20px;
        line-height: 26px;
    }
    .hof-role,
    .hof-description,
    .hof-readmore,
    .steel-description,
    .steel-readmore,
    .pres-role,
    .pres-readmore,
    .wsra-news-readmore,
    .wsra-news-home-readmore,
    .wsra-slider-btn,
    .wsra-events-btn {
        font-size: 10px !important;
        line-height: 1.2em !important;
    }
    .hof-readmore,
    .steel-readmore {
        padding: 10px 16px;
    }
    .hof-image-wrap {
        height: 180px;
    }
    
    .hofd-title {
        font-size: 20px;
        line-height: 26px;
    }
    .hofd-subtitle,
    .hofd-content {
        font-size: 15px;
        line-height: 24px;
    }
 .wsra-news-home-headline {
        font-size: 18px;
        line-height: 24px;
        max-height: 48px;
    }
    .wsra-news-home-card {
        padding: 16px 15px 30px 15px;
    }
}





/* ============================================================
   HOME PAGE NEWS
   ============================================================ */

.wsra-news-home-container {
    max-width: 1280px;
    margin: 0 auto;
  
}

.wsra-news-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== Card ===== */
.wsra-news-home-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    padding: 24px 23px 44px 23px;
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wsra-news-home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px -8px rgba(0,0,0,0.3);
}

/* ===== Image (380px height, full width) ===== */
.wsra-news-home-image-wrap {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

img.wsra-news-home-image {
   
    width: 100%;
    height: 380px !important;
    object-fit: cover;
    display: block;
}

/* ===== Body ===== */
.wsra-news-home-body {
    display: flex;
    flex-direction: column;
gap: 30px;
    flex: 1;
}

/* ===== Title (1.5 lines) ===== */
.wsra-news-home-headline {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #0a0b0e;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 56px; /* 28px × 2 lines */
}

.wsra-news-home-headline a {
    color: #0a0b0e;
    text-decoration: none;
}

.wsra-news-home-headline a:hover {
    color: #30448f;
}

/* ===== Read More Button (Bottom) ===== */
.wsra-news-home-readmore {
   font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 29px;
    color: #0a0b0d;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: oklch(85.2% 0.199 91.936);
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}
.wsra-news-home-readmore:hover {
    background: oklch(75.2% 0.199 91.936);
    color: #0a0b0d;
    text-decoration: none;
    transform: translateY(-2px);
.wsra-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.wsra-news-home-readmore:hover .wsra-arrow {
    transform: translateX(3px);
}

/* ===== Error ===== */
.wsra-news-error {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    max-width: 1280px;
    margin: 20px auto;
}

.wsra-news-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 18px;
}


