.c3-post-attachments {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 24px;
}

.c3-post-attachment {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px;
    background-color: var(--e-global-color-b390f81);
}

.c3-post-attachment__embed-fallback {
    display: block;
    max-width: 600px;
    margin: auto;
    font-family: var(--e-global-typography-bdd194f-font-family), sans-serif;
    font-weight: 500;
    font-size: var(--e-global-typography-1708442-font-size);
    color: var(--e-global-color-f81242a);
    line-height: var(--e-global-typography-bdd194f-line-height);
    letter-spacing: var(--e-global-typography-bdd194f-letter-spacing);
    text-align: center;
}

.c3-post-attachment__embed-fallback a {
    display: inline-block;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0) !important;
    font-family: inherit !important;
    font-weight: 600 !important;
    font-size: inherit !important;
    color: var(--e-global-color-text) !important;
}

.c3-post-attachment__embed {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c3-post-attachment__embed > iframe {
    width: fit-content;
}

.c3-post-attachment__embed .twitter-tweet,
.c3-post-attachment__embed .tiktok-embed {
    width: fit-content;
    margin: 0 auto !important;
}

.c3-post-attachment__embed--youtube iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}

.c3-post-attachment__embed--facebook iframe {
    aspect-ratio: 4/5;
}

.c3-post-attachment__file {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 80px;
    width: 100%;
}

.c3-post-attachment__file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
}

.c3-post-attachment__file-icon svg {
    display: block;
    width: 100%;
    max-width: 40px;
    height: auto;
    fill: var(--e-global-color-f81242a);
    opacity: 0.6;
}

.c3-post-attachment__file-name {
    font-family: var(--e-global-typography-72ac766-font-family), sans-serif;
    font-weight: 700;
    font-size: var(--e-global-typography-72ac766-font-size);
    color: var(--e-global-color-text);
    line-height: var(--e-global-typography-72ac766-line-height);
    letter-spacing: var(--e-global-typography-72ac766-letter-spacing);
}

.c3-post-attachment__file-caption,
.c3-post-attachment__file-info {
    font-family: var(--e-global-typography-bdd194f-font-family), sans-serif;
    font-weight: 400;
    font-size: var(--e-global-typography-bdd194f-font-size);
    color: var(--e-global-color-text);
    line-height: var(--e-global-typography-bdd194f-line-height);
    letter-spacing: var(--e-global-typography-bdd194f-letter-spacing);
}

.c3-post-attachment__file-info {
    color: var(--e-global-color-f81242a);
    text-transform: uppercase;
}

.c3-post-attachment__file-download {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-left: auto;
}

.c3-post-attachment__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: var(--e-global-typography-72ac766-font-family), sans-serif;
    font-weight: var(--e-global-typography-72ac766-font-weight);
    font-size: var(--e-global-typography-72ac766-font-size);
    color: var(--e-global-color-text);
    line-height: var(--e-global-typography-72ac766-line-height);
    letter-spacing: var(--e-global-typography-72ac766-letter-spacing);
}

.c3-post-attachment__button-text {
    display: block;
    width: max-content;
    position: relative;
}

.c3-post-attachment__button-text:before,
.c3-post-attachment__button-text:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid currentColor;
    transition: transform 750ms cubic-bezier(0.2, 1, 0.24, 1);
}

.c3-post-attachment__button-text:before {
    transition-delay: 0s;
    transform: scaleX(0);
    transform-origin: left;
}

.c3-post-attachment__button-text:after {
    transition-delay: 250ms;
    transform-origin: right;
}

.c3-post-attachment__button:hover .c3-post-attachment__button-text:before {
    transition-delay: .25s;
    transform: scaleX(1);
}

.c3-post-attachment__button:hover .c3-post-attachment__button-text:after {
    transition-delay: 0s;
    transform: scaleX(0);
}

.c3-post-attachment__button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.c3-post-attachment__button-icon svg {
    width: 1em;
    height: auto;
    fill: currentColor;
}