/* ─── Builds section ──────────────────────────── */
      .m74-builds-section { margin-bottom: 18px; }
      .m74-builds-section__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 10px;
      }
      .m74-builds-section__head-left { display: flex; align-items: center; gap: 8px; }
      .m74-builds-section__head-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background: var(--accent, #5f65dc);
        flex-shrink: 0;
        box-shadow: 0 2px 10px rgba(95,101,220,.35);
      }
      .m74-builds-section__head-title {
        font-size: 13px;
        font-weight: 600;
        color: rgba(255,255,255,.75);
        letter-spacing: .2px;
      }
      .m74-builds-section__head-link {
        font-size: 11px;
        font-weight: 500;
        color: var(--accent);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 4px;
        opacity: .8;
        transition: opacity .2s;
        white-space: nowrap;
      }
      .m74-builds-section__head-link:hover { opacity: 1; text-decoration: none; }

      .m74-builds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
      @media (max-width: 860px) { .m74-builds-grid { grid-template-columns: repeat(2, 1fr); } }

      .m74-bcard {
        position: relative;
        display: block;
        border-radius: 14px;
        overflow: hidden;
        aspect-ratio: 16/10;
        text-decoration: none;
        border: 1px solid rgba(255,255,255,.07);
        transition: transform .2s, border-color .25s, box-shadow .25s;
      }
      .m74-bcard:hover {
        transform: translateY(-3px);
        border-color: rgba(95,101,220,.45);
        box-shadow: 0 8px 24px rgba(95,101,220,.15);
      }
      .m74-bcard__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
      }
      .m74-bcard:hover .m74-bcard__img { transform: scale(1.06); }
      .m74-bcard__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.08) 55%, transparent 100%);
      }
      .m74-bcard__body {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        padding: 12px 14px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 8px;
      }
      .m74-bcard__name { font-size: 10px; color: rgba(255,255,255,.55); font-weight: 500; margin-bottom: 2px; }
      .m74-bcard__title { font-size: 12px; font-weight: 700; color: #fff; line-height: 1.2; }
      .m74-bcard__dl {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 4px;
        background: var(--accent, #5f65dc);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 100px;
        box-shadow: 0 2px 10px rgba(95,101,220,.45);
        white-space: nowrap;
        transition: background .2s;
      }
      .m74-bcard:hover .m74-bcard__dl { background: #4f54c8; }

      /* ─── Main image banners ──────────────────────── */
      .MainImagesFlex a {
        position: relative;
        overflow: hidden;
        border-radius: 14px;
        display: block;
        transition: transform .25s, box-shadow .25s;
      }
      .MainImagesFlex a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,.4);
      }
      .MainImagesFlex a img {
        display: block;
        width: 100%;
        transition: transform .4s ease;
      }
      .MainImagesFlex a:hover img { transform: scale(1.03); }

      /* ─── Section header utility ──────────────────── */
      .idx-section-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
        padding: 0 2px;
      }
      .idx-section-head-left { display: flex; align-items: center; gap: 10px; }
      .idx-section-head-link {
        font-size: 11px;
        font-weight: 500;
        color: var(--accent);
        text-decoration: none;
        opacity: .75;
        transition: opacity .2s;
      }
      .idx-section-head-link:hover { opacity: 1; text-decoration: none; }

/* ── Quick access grid ───────────────────────────── */
    .idx-quick { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; margin-bottom: 18px; }
    .idx-quick-card {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 8px; padding: 16px 8px;
        background: var(--card-color); border: 1px solid var(--border-card-color);
        border-radius: 14px; text-decoration: none; color: rgba(255,255,255,.55);
        font-size: 11px; font-weight: 600; text-align: center;
        transition: all .2s; cursor: pointer;
    }
    .idx-quick-card:hover {
        background: rgba(95,101,220,.1); border-color: rgba(95,101,220,.3);
        color: #fff; text-decoration: none; transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,.25);
    }
    .idx-quick-icon {
        width: 42px; height: 42px; border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        font-size: 20px; transition: all .2s;
    }
    .idx-quick-card:hover .idx-quick-icon { transform: scale(1.1); }
    .idx-quick-icon--purple { background: rgba(95,101,220,.15); color: #8a8eee; }
    .idx-quick-icon--green  { background: rgba(74,222,128,.1);  color: #4ade80; }
    .idx-quick-icon--orange { background: rgba(251,146,60,.1);  color: #fb923c; }
    .idx-quick-icon--blue   { background: rgba(56,189,248,.1);  color: #38bdf8; }
    .idx-quick-icon--pink   { background: rgba(244,114,182,.1); color: #f472b6; }
    .idx-quick-icon--yellow { background: rgba(250,204,21,.1);  color: #facc15; }

    /* ── Section label ───────────────────────────────── */
    .idx-section-label {
        display: flex; align-items: center; gap: 8px;
        font-size: 11px; font-weight: 700; letter-spacing: 1px;
        text-transform: uppercase; color: rgba(255,255,255,.28);
        margin-bottom: 10px; margin-top: 4px;
    }
    .idx-section-label::after {
        content: ''; flex: 1; height: 1px; background: var(--border-card-color);
    }

.idx-banner-link { display: block; border-radius: 14px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
    .idx-banner-link:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.45); }
    .idx-banner-link img { display: block; width: 100%; }

.ny_greetings_mini_btn {
        	margin-top: auto;

	/* padding: 18px 50px; */
	height: 50px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: radial-gradient(ellipse at top, #2ecc71 0%, #1a7a4a 40%, #0d4a2a 100%);
	border: 1px solid rgba(46, 204, 113, 0.5);
	border-radius: 20px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	/* font-family: 'Playfair Display', serif; */
	transition: all 0.3s ease;
	box-shadow:
		0 4px 15px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(46, 204, 113, 0.2),
		inset 0 -3px 10px rgba(0, 0, 0, 0.3),
		inset 0 3px 10px rgba(255, 255, 255, 0.1);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	text-align: center;

	display: flex;
	align-items: center;
	justify-content: center;
  margin-bottom: 18px;
      }

      .ny_greetings_mini_btn:hover {
        color: #fff !important;
        opacity: 0.7;
      }
