/* =========================================================
FEATURED ANNUAL REPORT
HOME PAGE MODULE
========================================================= */

.home-annual-report {


position: relative;

padding: 65px 0;

background: var(--background);

overflow: hidden;
```

}

/* =========================================================
MAIN FEATURE CARD
========================================================= */

.annual-feature {

```
position: relative;

display: flex;

align-items: stretch;

min-height: 390px;

overflow: hidden;

background: var(--primary-dark);

border-radius: var(--radius);

box-shadow: var(--shadow);

transition: var(--transition);
```

}

.annual-feature:hover {

```
box-shadow:
    0 15px 40px rgba(8,30,99,.18);
```

}

/* =========================================================
DECORATIVE BACKGROUND
========================================================= */

.annual-feature::before {

```
content: "";

position: absolute;

width: 500px;
height: 500px;

left: -250px;
top: -260px;

border-radius: 50%;

border: 70px solid rgba(244,195,0,.07);
```

}

.annual-feature::after {

```
content: "";

position: absolute;

width: 350px;
height: 350px;

right: -180px;
bottom: -220px;

border-radius: 50%;

background: rgba(211,47,47,.08);
```

}

/* =========================================================
LEFT REPORT AREA
========================================================= */

.annual-feature-cover {

```
position: relative;

width: 42%;

min-height: 390px;

display: flex;

align-items: center;

justify-content: center;

background:
    linear-gradient(
        135deg,
        rgba(211,47,47,.20),
        rgba(8,30,99,.05)
    );

z-index: 2;
```

}

/* =========================================================
COVER GLOW
========================================================= */

.annual-cover-glow {

```
position: absolute;

width: 220px;
height: 220px;

border-radius: 50%;

background: rgba(244,195,0,.15);

filter: blur(40px);
```

}

/* =========================================================
ANNUAL REPORT COVER
========================================================= */

.annual-cover {

```
position: relative;

width: 205px;
height: 285px;

padding: 22px 20px;

display: flex;

flex-direction: column;

justify-content: space-between;

background: var(--white);

border-radius: 5px;

border-top: 7px solid var(--primary);

box-shadow:
    10px 12px 0 rgba(244,195,0,.45),
    0 20px 40px rgba(0,0,0,.30);

transform: rotate(-4deg);

transition: var(--transition);
```

}

.annual-feature:hover .annual-cover {

```
transform:
    rotate(0deg)
    translateY(-8px);

box-shadow:
    12px 15px 0 rgba(244,195,0,.55),
    0 25px 45px rgba(0,0,0,.35);
```

}

/* =========================================================
COVER TOP
========================================================= */

.annual-cover-top {

```
display: flex;

align-items: center;

justify-content: space-between;

color: var(--primary);

font-size: 9px;

font-weight: 800;

letter-spacing: 1.5px;
```

}

.annual-cover-top i {

```
font-size: 18px;

color: var(--primary-dark);
```

}

/* =========================================================
COVER MAIN
========================================================= */

.annual-cover-main {

```
text-align: center;
```

}

.annual-cover-main small {

```
display: block;

margin-bottom: 5px;

color: var(--text-light);

font-size: 8px;

font-weight: 700;

letter-spacing: 1.5px;
```

}

.annual-cover-main strong {

```
display: block;

color: var(--primary-dark);

font-size: 35px;

line-height: 1;

font-weight: 800;
```

}

.annual-cover-line {

```
width: 45px;

height: 3px;

margin: 13px auto;

background: var(--secondary);
```

}

.annual-cover-main span {

```
color: var(--text-light);

font-size: 9px;

line-height: 1.5;

font-weight: 600;
```

}

/* =========================================================
COVER FOOTER
========================================================= */

.annual-cover-bottom {

```
display: flex;

align-items: center;

gap: 7px;

padding-top: 10px;

border-top: 1px solid var(--border);

color: var(--text-light);

font-size: 9px;
```

}

.annual-cover-bottom i {

```
color: var(--primary);

font-size: 13px;
```

}

/* =========================================================
RIGHT CONTENT
========================================================= */

.annual-feature-content {

```
position: relative;

z-index: 3;

width: 58%;

padding: 55px 60px 55px 25px;
```

}

/* =========================================================
LABEL
========================================================= */

.annual-feature-tag {

```
display: inline-flex;

align-items: center;

gap: 8px;

margin-bottom: 14px;

color: var(--secondary);

font-size: 11px;

font-weight: 800;

letter-spacing: 2px;
```

}

.annual-feature-tag i {

```
font-size: 14px;

color: var(--secondary);
```

}

/* =========================================================
HEADING
========================================================= */

.annual-feature-content h2 {

```
margin: 0 0 15px;

max-width: 560px;

color: var(--white);

font-size: 36px;

line-height: 1.18;

font-weight: 700;
```

}

.annual-feature-content h2 span {

```
color: var(--secondary);
```

}

/* =========================================================
DESCRIPTION
========================================================= */

.annual-feature-content > p {


max-width: 540px;

margin: 0 0 22px;

color: rgba(255,255,255,.72);

font-size: 14px;

line-height: 1.8;
```

}

/* =========================================================
LATEST YEAR
========================================================= */

.annual-year-highlight {


display: inline-flex;

align-items: center;

gap: 13px;

margin-bottom: 25px;

padding: 11px 18px;

background: rgba(255,255,255,.07);

border: 1px solid rgba(255,255,255,.12);

border-radius: 8px;


}

.annual-year-icon {

```
width: 38px;
height: 38px;

display: flex;

align-items: center;

justify-content: center;

background: var(--secondary);

color: var(--primary-dark);

border-radius: 6px;

font-size: 16px;
```

}

.annual-year-highlight small {

```
display: block;

margin-bottom: 2px;

color: rgba(255,255,255,.55);

font-size: 8px;

font-weight: 700;

letter-spacing: 1px;
```

}

.annual-year-highlight strong {

```
display: block;

color: var(--white);

font-size: 19px;

line-height: 1;
```

}

/* =========================================================
ACTION BUTTONS
========================================================= */

.annual-feature-actions {

```
display: flex;

align-items: center;

gap: 18px;
```

}

/* PRIMARY BUTTON */

.annual-primary-btn {

```
display: inline-flex;

align-items: center;

gap: 9px;

padding: 13px 20px;

background: var(--primary);

color: var(--white) !important;

border: 1px solid var(--primary);

border-radius: 6px;

font-size: 12px;

font-weight: 700;

text-decoration: none !important;

box-shadow:
    0 7px 18px rgba(211,47,47,.25);

transition: var(--transition);
```

}

.annual-primary-btn:hover {

```
background: var(--secondary);

border-color: var(--secondary);

color: var(--primary-dark) !important;

transform: translateY(-2px);
```

}

.annual-primary-btn .fa-arrow-right {

```
margin-left: 4px;
```

}

/* SECONDARY BUTTON */

.annual-secondary-btn {

```
display: inline-flex;

align-items: center;

gap: 7px;

padding: 12px 5px;

color: rgba(255,255,255,.82) !important;

font-size: 12px;

font-weight: 600;

text-decoration: none !important;

transition: var(--transition);
```

}

.annual-secondary-btn:hover {

```
color: var(--secondary) !important;
```

}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

```
.home-annual-report {

    padding: 40px 0;

}


.annual-feature {

    flex-direction: column;

    min-height: auto;

    border-radius: 10px;

}


.annual-feature-cover {

    width: 100%;

    min-height: 325px;

    padding: 25px 0;

}


.annual-cover {

    width: 175px;

    height: 245px;

    padding: 18px;

}


.annual-cover-main strong {

    font-size: 30px;

}


.annual-feature-content {

    width: 100%;

    padding: 35px 25px 40px;

    text-align: center;

}


.annual-feature-content h2 {

    font-size: 27px;

}


.annual-feature-content > p {

    font-size: 13px;

}


.annual-year-highlight {

    text-align: left;

}


.annual-feature-actions {

    flex-direction: column;

    width: 100%;

    gap: 10px;

}


.annual-primary-btn {

    justify-content: center;

    width: 100%;

}


.annual-secondary-btn {

    justify-content: center;

    width: 100%;

    padding: 10px;

}


}
