/*press release page css */

.press-table-container {
  overflow-x: auto;
}

.press-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
}

.press-table thead tr {
  background-color: #f57c00;
  color: white;
}

.press-table th,
.press-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

.press-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.press-table button {
    background-color: #e46825;
    color: white;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 10px;
}

.press-table button:hover {
  background-color: #e46825;
}

.pagination {
    margin-top: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.pagination button {
  background-color: #f57c00;
  color: white;
  border: none;
  padding: 8px 14px;
  margin: 0 4px;
  cursor: pointer;
  border-radius: 4px;
}

.pagination button.active {
  background-color: #000;
}

.pagination button:hover {
  background-color: #e46825;
}

/* national e magazine page css*/

.magazine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.magazine-card {
  width: 260px;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.magazine-image {
    width: 70%;
    height: auto;
    border-radius: 5px;
    margin: 0 auto;
}

.magazine-title {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
}

.download-btn {
  display: inline-block;
  background: #f57c00;
  color: white;
  padding: 10px 15px;
  /* border-radius: 25px; */
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: #f57c00;
}


 @media only screen and (min-width: 0px) and (max-width: 1000px){

  .magazine-card {
    width: 280px !important;
    margin: 0 auto;
}

.newsletter-card {
    width: 280px !important; 
    margin: 0 auto;
}

.webinar-card {
    width: 280px !important;
    margin: 0 auto;
}
 }





/*newsletter page css */

.newsletter-section {
  margin-top: 30px;
}

.newsletter-heading {
  font-size: 24px;
  font-weight: bold;
}

.newsletter-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.newsletter-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.newsletter-card {
width: 232px;
  background: #f0f0f0;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.newsletter-card img {
  width: 100%;
  height: auto;
  /* border-radius: 6px; */
}

.newsletter-card-title {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0;
}

.newsletter-download-btn {
  display: inline-block;
  background: #f57c00;
  color: #fff;
  padding: 10px 16px;
  /* border-radius: 25px; */
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.newsletter-download-btn:hover {
  background: #f57c00;
}

.newsletter-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
margin-top: 21px;
    margin-bottom: 21px;
}

.newsletter-pagination button {
  background-color: #f57c00;
  color: white;
  border: none;
    padding: 8px 11px;
    /* border-radius: 20px; */
    font-weight: bold;
    cursor: pointer;
    font-size: 12px;
}

.newsletter-pagination button.active {
  background-color: #000;
}

.newsletter-pagination button:hover {
  background-color: #e46825;
}
.newsletter-card-date {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}


/* Webinar Reports — reference-style cards */

/* Layout */
.webinar-section{
  margin-top:30px;
  max-width:1160px;
  margin-left:auto;
  margin-right:auto;
}

.webinar-heading{
  font-size:28px;
  font-weight:800;
  margin:0 0 18px;
  letter-spacing:.2px;
}

.webinar-card-wrapper{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

@media (max-width:900px){
  .webinar-card-wrapper{ grid-template-columns:1fr; }
}

/* Card */
.webinar-card{
  --thumb-h: 220px;          /* change once to tweak image height */
  position:relative;
  background:#fff;
  border:1px solid #e9e9e9;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

/* Image on top */
.webinar-card img{
  display:block;
  width:100%;
  height:var(--thumb-h);
  object-fit:cover;
}

/* Date ribbon over image (bottom-left) */
.webinar-card-date{
  position:absolute;
  left:12px;
  top:calc(var(--thumb-h) - 28px);
  background:#f57c00;
  color:#fff;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  padding:8px 14px;
  line-height:1;
  border-radius:4px;
  z-index:2;
}

/* Pointer on the right side of the ribbon */
/* .webinar-card-date::after{
  content:"";
  position:absolute;
  right:-12px;
  top:0;
  border-top:16px solid transparent;
  border-bottom:16px solid transparent;
  border-left:12px solid #f57c00;
} */

/* Title and link area */
.webinar-card-title{
  margin:16px 18px 6px;
  font-size:18px;
  font-weight:800;
  color:#222;
  line-height:1.35;
  display:-webkit-box;
  -webkit-line-clamp:2;      /* clamp to two lines like the ref */
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.read-more-btn{
  margin:2px 18px 18px;
  display:inline-block;
  background:transparent;
  color:#f57c00;
  padding:0;
  font-weight:700;
  text-decoration:none;
}

.read-more-btn::after{
  content:" →";
  transition:transform .2s ease;
}

.read-more-btn:hover{
  color:#000;
}

.read-more-btn:hover::after{ transform:translateX(2px); }

/* Pagination */
.webinar-pagination{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:28px;
}

#webinarPagination button {
     padding: 8px 11px;
  margin: 3px;
  border: none;
  background: #f77f00;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

#webinarPagination button.active {
  background: #333;
}

@media (max-width: 768px) {
  #webinarPagination {
    display: flex;
    justify-content: center;
           gap: 0px;
            margin-bottom: 18px;
  }
}


.webinar-pagination button{
  background:#f57c00a6;
  color:#fff;
  border:0;
  padding:8px 14px;
  font-weight:800;
  cursor:pointer;
}

.webinar-pagination button.active{ background:#f57c00; }


a:hover {
    color: #fff;
    text-decoration: underline;
}

.banner-press-release {
    background: url(../images/industry-research-reports-banner.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
}

.banner-press-release h1 {
    text-align: center;
    background: #fff0;
    position: absolute;
    top: 25%;
    left: auto;
    width: 100%;
    color: #000000;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 80px;
}

@media only screen and (min-width: 0px) and (max-width: 1000px) {
    .banner-press-release {
        width: 100%;
        height: 190px;
        position: relative;
        top: 83px;
        left: 0;
        z-index: 0;
        transform: translate3d(0, 0, 0);
        background-size: cover;
    }

    .banner-press-release h1 {
        text-align: center;
        background: #fff0;
        position: absolute;
        top: 0%;
        left: auto;
        width: 100%;
        color: #000000;
        text-transform: uppercase;
        font-weight: 100;
        font-size: 36px;
    }
}



.magzin-banner {
    background: url(../images/magzin-banner.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
}

.magzin-banner h1 {
    text-align: center;
    background: #fff0;
    position: absolute;
    top: 25%;
    left: auto;
    width: 100%;
    color: #000000;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 80px;
}

@media only screen and (min-width: 0px) and (max-width: 1000px) {
    .magzin-banner {
        width: 100%;
        height: 190px;
        position: relative;
        top: 83px;
        left: 0;
        z-index: 0;
        transform: translate3d(0, 0, 0);
        background-size: cover;
    }

    .magzin-banner h1 {
        text-align: center;
        background: #fff0;
        position: absolute;
        top: 0%;
        left: auto;
        width: 100%;
        color: #000000;
        text-transform: uppercase;
        font-weight: 100;
        font-size: 36px;
    }
}


.events-banner {
    background: url(../images/events-reports-banner.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
}

.events-banner h1 {
    text-align: center;
    background: #fff0;
    position: absolute;
    top: 25%;
    left: auto;
    width: 100%;
    color: #000000;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 80px;
}

@media only screen and (min-width: 0px) and (max-width: 1000px) {
    .events-banner {
        width: 100%;
        height: 190px;
        position: relative;
        top: 83px;
        left: 0;
        z-index: 0;
        transform: translate3d(0, 0, 0);
        background-size: cover;
    }

    .events-banner h1 {
        text-align: center;
        background: #fff0;
        position: absolute;
        top: 0%;
        left: auto;
        width: 100%;
        color: #000000;
        text-transform: uppercase;
        font-weight: 100;
        font-size: 36px;
    }
}


.webinar-banner {
    background: url(../images/webinar-reports-banner.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
}

.webinar-banner h1 {
    text-align: center;
    background: #fff0;
    position: absolute;
    top: 25%;
    left: auto;
    width: 100%;
    color: #000000;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 80px;
}

@media only screen and (min-width: 0px) and (max-width: 1000px) {
    .webinar-banner {
        width: 100%;
        height: 190px;
        position: relative;
        top: 83px;
        left: 0;
        z-index: 0;
        transform: translate3d(0, 0, 0);
        background-size: cover;
    }

    .webinar-banner h1 {
        text-align: center;
        background: #fff0;
        position: absolute;
        top: 0%;
        left: auto;
        width: 100%;
        color: #000000;
        text-transform: uppercase;
        font-weight: 100;
        font-size: 36px;
    }
}


.newsletter-banner {
    background: url(../images/webinar-reports-banner.jpg);
    background-repeat: no-repeat;
    background-size: 100% 64%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate3d(0, 0, 0);
}

.newsletter-banner h1 {
    text-align: center;
    background: #fff0;
    position: absolute;
    top: 25%;
    left: auto;
    width: 100%;
    color: #000000;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 80px;
}

@media only screen and (min-width: 0px) and (max-width: 1000px) {
    .newsletter-banner {
        width: 100%;
        height: 190px;
        position: relative;
        top: 83px;
        left: 0;
        z-index: 0;
        transform: translate3d(0, 0, 0);
        background-size: cover;
    }

    .newsletter-banner h1 {
        text-align: center;
        background: #fff0;
        position: absolute;
        top: 0%;
        left: auto;
        width: 100%;
        color: #000000;
        text-transform: uppercase;
        font-weight: 100;
        font-size: 36px;
    }
}




